-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
{
"name": "inex_frontend",
"version": "1.0.0",
"description": "Meal order tool",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"start": "webpack-dev-server --host 0.0.0.0 --port 3001 --mode development --open",
"build": "webpack --mode production"
},
"author": "Svetoslav Dimitrov",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@material-ui/core": "^4.4.1",
"@material-ui/icons": "^4.2.1",
"axios": "^0.18.0",
"dotenv-webpack": "^1.7.0",
"lodash": "^4.17.21",
"notistack": "^0.9.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"css-loader": "^1.0.1",
"dotenv": "^8.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-styled-components": "^6.3.1",
"jest-svg-transformer": "^1.0.0",
"react-test-renderer": "^16.8.6",
"style-loader": "^0.23.1",
"styled-components": "^4.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}