-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
56 lines (56 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "interweave-root",
"private": true,
"version": "0.0.0",
"scripts": {
"prepare": "beemo create-config",
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration=standard",
"clean": "packemon clean",
"check": "yarn run type && yarn run test && yarn run lint",
"coverage": "yarn run test --coverage",
"docs": "cd website && yarn run start",
"lint": "beemo eslint",
"test": "beemo jest",
"test:bundle": "yarn run build && beemo create-config typescript && webpack && serve ./tests/",
"format": "beemo prettier",
"prerelease": "yarn run clean && yarn run pack && yarn run check",
"release": "yarn prerelease && lerna publish",
"release:docs": "cd website && yarn deploy",
"type": "beemo typescript --build"
},
"engines": {
"node": ">=12.17.0"
},
"devDependencies": {
"@beemo/cli": "^2.0.6",
"@beemo/core": "^2.1.4",
"@beemo/dev": "^1.7.8",
"@types/lodash": "^4.14.179",
"@types/parse5": "^6.0.3",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-window": "^1.8.5",
"babel-loader": "^8.2.3",
"conventional-changelog-beemo": "^3.0.0",
"emojibase": "^6.1.0",
"emojibase-test-utils": "^7.0.0",
"eslint-plugin-rut": "^2.0.0",
"jest-rut": "^2.0.0",
"packemon": "^1.14.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rut-dom": "^2.0.0",
"serve": "^13.0.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"lerna": "^4.0.0"
},
"workspaces": [
"packages/*",
"website"
],
"packageManager": "[email protected]"
}