-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
43
{
"name": "my-app-client",
"version": "0.0.1",
"private": true,
"dependencies": {
"dotenv": "^6.1.0",
"express": "^4.16.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^4.39.0",
"swagger-ui-express": "^4.0.1",
"winston": "^3.1.0"
},
"scripts": {
"start": "node dist/index.js",
"build": "npm install && tsc -p server/src && cd client && npm run build",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node,React\" -c \"cyan.bold,green.bold,blue.bold\" \"npm run watch-ts\" \"npm run watch-node\" \"npm run watch-client\"",
"watch-client": "cd client && npm run start",
"watch-ts": "tsc -w -p server/src",
"watch-node": "nodemon dist/server/src/index.js",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"heroku-postbuild": "npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"proxy": "http://localhost:5000",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.117",
"@types/node": "^10.11.4",
"@types/passport": "^0.4.6",
"@types/passport-local": "^1.0.33",
"@types/sequelize": "^4.27.27",
"@types/swagger-ui-express": "^3.0.0",
"concurrently": "^3.5.1",
"nodemon": "^1.18.4",
"sqlite3": "^4.0.2",
"typescript": "^3.0.3",
"tslib": "^1.8.1"
}
}