-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "queue",
"version": "1.0.0",
"description": "App to manage queues with React, Express and SQLite.",
"private": true,
"license": "MIT",
"keywords": [
"app",
"queue",
"express",
"javascript",
"react",
"sqlite",
"typescript"
],
"browserslist": [
"last 7 versions",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10.0",
"npm": ">=6.0",
"yarn": ">=1.1.0"
},
"main": "src/index.tsx",
"prox": "http://localhost:4001",
"directories": {
"test": "test"
},
"scripts": {
"build": "node ./buildScript",
"build-front": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write .",
"start-server": "nodemon server/server.js --watch server/*",
"start-front": "react-scripts start",
"start": "concurrently \"npm run start-server\" \"npm run start-front\" --kill-others --kill-others-on-fail",
"test": "cross-env NODE_ENV=testing mocha"
},
"dependencies": {
"axios": "0.19.2",
"body-parser": "1.19.0",
"bootstrap": "^4.5.3",
"compression": "1.7.4",
"cors": "2.8.5",
"cross-env": "^7.0.2",
"express": "4.17.1",
"helmet": "3.22.0",
"knex": "0.20.13",
"prettier": "^2.1.2",
"react": "16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "16.13.1",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.1.6"
},
"devDependencies": {
"@types/express": "4.17.6",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "5.1.0",
"mocha": "^8.2.0",
"nodemon": "2.0.3",
"react-scripts": "3.4.1",
"sqlite3": "4.1.1",
"typescript": "3.8.3"
}
}