-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "gagebu",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run server",
"test": "jest",
"build": "webpack --config config/webpack.config.prod.js && tsc --project tsconfig-server.json",
"server": "NODE_ENV=poduction node dist/bin/www",
"dev": "concurrently 'nodemon' 'npm run dev:client'",
"dev:server": "DEBUG=gagebu:* node --inspect=5858 -r ts-node/register ./src/bin/www.ts",
"dev:server:watch": "nodemon",
"dev:client": "webpack-dev-server --config config/webpack.config.dev.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"assetPath": "assets",
"outputPath": "dist",
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"./src"
],
"exec": "npm run dev:server",
"ext": "ts"
},
"dependencies": {
"@types/bluebird": "^3.5.27",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/moment": "^2.13.0",
"@types/node": "^12.6.8",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.4",
"@types/redux-saga": "^0.10.5",
"@types/superagent": "^4.1.3",
"@types/validator": "^10.11.2",
"antd-mobile": "^2.2.14",
"connected-react-router": "^6.5.2",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"moment": "^2.24.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.12.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux-saga": "^1.0.5",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.11.0",
"sequelize-typescript": "^1.0.0-beta.3",
"superagent": "^5.1.0",
"ts-node": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/morgan": "^1.7.36",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^5.0.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}