-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "codecon-enterprise",
"version": "1.0.0",
"description": "Web application with React/Redux/Node/Express/TypeOrm/Typescript/Postgress",
"author": {
"name": "Jan Jakubcik",
"email": "jakubcikjan@gmail.com",
"url": "https://webus.sk"
},
"license": "MIT",
"scripts": {
"install-server": "cd client && yarn install",
"install-client": "cd server && yarn install",
"install-app": "yarn install && concurrently --kill-others-on-fail \"yarn install-server\" \"yarn install-client\"",
"client": "cd client && yarn start",
"server": "cd server && yarn start",
"watch-server": "cd server && yarn watch",
"build": "cd client && yarn build && cpx \"build/**/*\" \"../server/src/public\"",
"dev": "concurrently --kill-others-on-fail \"yarn watch-server\" \"yarn client\""
},
"devDependencies": {
"concurrently": "^3.5.1",
"cpx": "^1.5.0"
},
"keywords": [
"node",
"express",
"react",
"redux",
"typescript",
"postgress"
]
}