-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1.04 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
{
"name": "fact",
"scripts": {
"install": "yarn install:front && yarn install:back",
"install:front": "cd web && yarn",
"install:back": "cd back && yarn",
"client:start": "cd web && yarn start",
"server:start": "cd back && yarn start",
"client:build": "cd web && yarn build",
"server:build": "cd back && yarn build",
"client:dev": "cd web && yarn dev",
"server:dev": "cd back && yarn develop",
"export:web": "cd web && yarn next export",
"reset-modules": "rm -rf node_modules/ core/node_modules web/node_modules mobile/node_modules",
"reset-yarn": "yarn cache clean",
"reset-rn": "watchman watch-del-all; rm -fr $TMPDIR/react-*; rm -rf $TMPDIR/haste-map-react-native-packager-*",
"reset-cache": "yarn reset-yarn && yarn reset-rn",
"reset": "yarn reset-modules && yarn reset-cache",
"lint": "yarn workspaces run lint",
"start:all": "yarn run-p dev:*",
"get-types": "cd web && yarn get-types"
},
"engines": {
"node": "14.x"
},
"devDependencies": {
"typescript": "^4.2.3"
}
}