-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.89 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
{
"name": "coderscamp2020.hackathon",
"version": "1.0.0",
"engines": {
"node": "15.x"
},
"description": "",
"contributors": [
"Hubert Kawałek (/~https://github.com/htk4)",
"Anna Marszałek (/~https://github.com/Ania-Em)",
"Mateusz Baciak (/~https://github.com/bat098)",
"Mateusz Król (/~https://github.com/KrolMateusz)",
"Mateusz Kmieć (/~https://github.com/Haivex)",
"Tomasz Dudek (/~https://github.com/dudeek)",
"Weronika Dziedzic (/~https://github.com/blackrabbit2)"
],
"license": "MIT",
"scripts": {
"preinstall": "npm ci --prefix server && npm ci --prefix client",
"test:server": "npm run test:ci --prefix server",
"test:client": "npm run test:ci --prefix client",
"test": "npm run test:server && npm run test:client",
"tools:cp:client": "shx cp -R client/build server/dist/presentation/client",
"tools:generate:server": "npm run tools:generate --prefix server",
"tools:generate:server:dev": "nodemon --watch server/src/presentation/rest -e js,ts -x npm run tools:generate:server",
"tools:generate:client": "npm run tools:generate --prefix client",
"tools:generate:client:dev": "nodemon --watch server/generated -x npm run tools:generate:client",
"build:server": "npm run build --prefix server && npm run tools:generate:server",
"build:client": "npm run tools:generate:client && npm run build --prefix client",
"build": "npm run build:server && npm run build:client && npm run tools:cp:client",
"start:server": "npm run start:dev --prefix server",
"start:client": "npm run start --prefix client",
"start": "concurrently \"npm run start:server\" \"npm run start:client\" \"npm run tools:generate:client:dev\" \"npm run tools:generate:server:dev\"",
"start:prod": "npm run start:prod --prefix server"
},
"dependencies": {
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"shx": "^0.3.3",
"uuid": "^8.3.2"
}
}