-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "profile_micro",
"version": "1.0.0",
"description": "Creates a profile microservice",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start-dev": "nodemon server/index.js",
"start": "webpack & nodemon server/index.js",
"build": "webpack -d --watch",
"startwebpack": "webpack --config ./webpack.config.js --watch",
"lint": "eslint . --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "null"
},
"author": "Shaital Desai",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest-cli": "^20.0.4",
"redux-mock-store": "^1.5.3",
"style-loader": "^0.22.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@material-ui/core": "^3.0.2",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"lodash": "^4.17.11",
"mongoose": "^5.2.9",
"nodemon": "^1.18.4",
"path": "^0.12.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.5.0",
"redux": "^4.0.0",
"redux-form": "^6.6.3",
"redux-promise": "^0.6.0",
"save": "^2.3.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>__tests__/setup/setupEnzyme.js",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/"
]
}
}