-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.11 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
{
"private": true,
"name": "@react-static/monorepo",
"version": "UNVERSIONED",
"scripts": {
"postbuild": "yarn tsc --noEmit",
"build": "lerna exec -- cross-env REACT_STATIC_ENV=internal yarn build",
"prewatch": "yarn build",
"watch": "lerna exec --stream --parallel -- cross-env REACT_STATIC_ENV=internal yarn watch",
"lint": "yarn eslint 'packages/**/*.ts{,x}'",
"lint:fix": "yarn lint --fix",
"test": "lerna exec -- cross-env REACT_STATIC_ENV=internal yarn test",
"test:watch": "lerna exec --parallel -- cross-env REACT_STATIC_ENV=internal yarn test:watch",
"postinstall": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.17.0",
"lerna": "^3.19.0",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
},
"workspaces": [
"packages/*"
]
}