-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 KB
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
{
"name": "express-react-universal-example",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "npx jest --watchAll",
"start:prod": "NODE_ENV=production node build/server.js",
"seed": "ts-node scripts/seed-db.ts",
"prepare": "npm run seed"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-jwt": "^5.3.1",
"express-session": "^1.17.0",
"formik": "^1.5.8",
"immer": "^4.0.2",
"lodash": "^4.17.15",
"mongo-seeding": "^3.4.0-alpha.0",
"mongoose": "^5.7.5",
"razzle": "^3.0.0",
"razzle-plugin-typescript": "^3.0.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-loop": "^5.0.1",
"universal-cookie": "^4.0.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/react": "^9.3.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.19",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.144",
"@types/mongoose": "^5.5.22",
"@types/node": "^12.11.1",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.0",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-preset-react-app": "^9.0.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}