-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.33 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
{
"name": "arcanaeum",
"version": "2.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "12.x"
},
"scripts": {
"build-backend": "npm run build-ts-backend && npm run lint-backend",
"start-backend": "npm run serve-backend",
"serve-backend": "node backend/dist/server.js",
"watch-backend": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts-backend\" \"npm run watch-node-backend\"",
"watch-ts-backend": "cd backend && tsc -w",
"watch-node-backend": "nodemon backend/dist/server.js",
"test-backend": "jest --forceExit --coverage --verbose",
"watch-test-backend": "npm run test -- --watchAll",
"build-ts-backend": "cd backend && tsc",
"lint-backend": "cd backend && tsc --noEmit && eslint \"**/*.{js,ts}\"",
"build-frontend": "cd frontend && webpack --config webpack.config.js",
"watch-frontend": "cd frontend && webpack-dev-server --config webpack.config.js",
"build-all": "npm run build-backend && npm run build-frontend"
},
"author": "",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mobx": "^5.15.1",
"mobx-react": "^6.1.4",
"mobx-react-devtools": "^6.1.1",
"mongoose": "^5.7.1",
"passport": "^0.4.0",
"passport-google-oauth2": "^0.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"subscribableevent": "^1.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/mongoose": "^5.5.32",
"@types/passport": "^1.0.2",
"@types/passport-google-oauth2": "^0.1.3",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"concurrently": "^5.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.1",
"eslint": "^6.7.2",
"file-loader": "^5.0.2",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"nodemon": "^2.0.2",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}