-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 866 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 866 Bytes
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": "react-node-full-stack-typescript",
"version": "1.0.0",
"scripts": {
"postinstall": "yarn run build-server && yarn run build-client",
"build-server": "cd server/ && yarn install && yarn run build-ts",
"build-client": "cd react-ui/ && yarn install && yarn run build",
"start": "cd server/ && yarn start",
"dev": "concurrently \"cd server/ && yarn run dev\" \"cd react-ui && yarn start\""
},
"cacheDirectories": [
"node_modules",
"server/node_modules",
"react-ui/node_modules"
],
"dependencies": {
"typescript": "^3.9.5"
},
"license": "MIT",
"devDependencies": {
"concurrently": "^5.2.0",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^5.0.0"
}
}