-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"scripts": {
"start": "concurrently \"yarn start-server\" \"yarn dev\"",
"start-server": "nodemon --exec ts-node server/app.ts",
"dev": "parcel frontend/index.html --open",
"build": "parcel build frontend/index.html"
},
"name": "myapp",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dropzone": "^5.5.1",
"express": "^4.16.4",
"mongoose": "^5.5.5",
"multer": "^1.4.1",
"mysql": "^2.16.0",
"nodemon": "^1.18.11",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.4",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/formidable": "^1.0.31",
"@types/mongoose": "^5.5.5",
"@types/mysql": "^2.15.6",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-dropzone": "^4.2.2",
"@types/react-router": "^5.0.1",
"@types/react-router-dom": "^4.3.3",
"enzyme": "^3.10.0",
"jest": "^24.8.0"
}
}