-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "invoice-editor",
"version": "1.0.0",
"description": "Basic editor that allows adding items and calculate subtotal, taxes and total.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "jest",
"test:watch": "npm test -- --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "webpack --mode development"
},
"keywords": [],
"author": "Adrian Lee",
"license": "GNU",
"devDependencies": {
"@material-ui/core": "^4.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"react-addons-test-utils": "^15.6.2",
"redux-mock-store": "^1.5.1",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/icons": "^4.9.1",
"coveralls": "^3.0.1",
"material-ui": "^0.20.2",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.1.3",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools": "^3.4.1",
"redux-thunk": "^2.2.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
}
}