-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "quizapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/express": "^4.16.1",
"@types/socket.io": "^2.1.2",
"draft-js": "^0.10.5",
"draft-js-export-html": "^1.3.0",
"express": "^4.16.4",
"http": "0.0.0",
"pg": "^7.8.0",
"promise": "^8.0.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-draft-wysiwyg": "^1.13.1",
"react-scripts": "2.1.5",
"sequelize": "^4.42.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"sqlstring": "^2.3.1",
"typescript": "^3.3.3",
"uuid": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "npm run tsc && node server/server.js",
"tsc": "tsc --build ./lib/tsconfig.json",
"dev": "concurrently \"npm run start\" \"npm run server\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/pg": "^7.4.13",
"@types/sequelize": "^4.27.37",
"@types/sqlstring": "^2.2.1",
"@types/uuid": "^3.4.4",
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}