-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
69
70
{
"name": "react_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.12.0",
"npm": "6.4.1"
},
"scripts": {
"prestart": "babel-node buildScripts/startScript.js",
"start": "npm-run-all --parallel open:src security-check lint:watch test:watch",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"open:src": "./node_modules/.bin/babel-node buildScripts/srcServer.js",
"security-check": "nsp check",
"test": "mocha --reporter dot buildScripts/testSetup.js \"tests/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-judynjagi/React_Restack.git"
},
"author": "Judy Njagi",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela-judynjagi/React_Restack/issues"
},
"homepage": "https://github.com/andela-judynjagi/React_Restack#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"lodash": "^4.17.11",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"webpack": "^4.22.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-watch": "^4.0.2",
"express": "^4.16.4",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.4",
"npm-run-all": "^4.1.3",
"nsp": "^3.2.1",
"numeral": "^2.0.6",
"open": "0.0.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3"
}
}