-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
{
"name": "mbi-app",
"version": "1.0.0",
"description": "",
"repository": {},
"scripts": {
"start": "node ./server/index",
"build-tsc": "tsc",
"build-web": "webpack",
"build-all": "run-p build-tsc build-web",
"deploy": "node ./scripts/copyToDeploy",
"build-and-deploy": "run-s build-all deploy",
"test": "jest"
},
"author": "Joel Howard",
"license": "ISC",
"engines": {
"node": "10.x"
},
"dependencies": {
"@types/socket.io-client": "^1.4.34",
"body-parser": "^1.19.0",
"connect-pg-simple": "^6.2.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"feather-route-matcher": "^4.0.0",
"history": "^5.0.0",
"immer": "^9.0.12",
"passport": "^0.4.1",
"passport-auth0": "^1.3.3",
"pg": "^8.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socket.io": "^3.0.1",
"use-immer": "^0.4.2"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^27.0.6",
"@types/node": "^14.10.3",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"fs-extra": "^9.0.1",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.6",
"ts-loader": "^8.0.3",
"ts-node": "^10.2.1",
"typescript": "^4.1.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}