forked from oshabaeva/homework-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "homework-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack",
"dev": "webpack-dev-server --open",
"server": "babel-node src/server/server",
"start-dev": "concurrently \"npm run server \" \"npm run dev\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"cors": "^2.8.4",
"css-loader": "^5.0.0",
"express": "^4.16.3",
"file-loader": "^6.1.1",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.7"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"axios": "^0.18.0",
"react": "^16.13.1",
"react-csv": "^2.0.3",
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1"
}
}