-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"engines": {
"node": ">=10.0",
"npm": ">=6.0",
"yarn": ">=1.1.0"
},
"main": "src/index.tsx",
"prox": "http://localhost:4001",
"scripts": {
"build": "node ./buildScript",
"build-front": "react-scripts build",
"eject": "react-scripts eject",
"start-server": "nodemon server/server.ts",
"start-front": "react-scripts start",
"start": "concurrently \"npm run start-server\" \"npm run start-front\" --kill-others --kill-others-on-fail",
"test": "npx jest"
},
"dependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.4.0",
"@types/knex": "^0.16.1",
"@types/node": "^17.0.18",
"axios": "0.21.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"helmet": "3.22.0",
"jest": "^27.5.1",
"knex": "0.20.13",
"react": "16.13.1",
"react-dom": "16.13.1",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@types/express": "4.17.6",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"concurrently": "5.1.0",
"nodemon": "2.0.3",
"react-scripts": "3.4.1",
"sqlite3": "^5.0.2",
"typescript": "^4.5.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}