-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
71
72
{
"name": "faas-react",
"version": "1.0.0",
"main": "index.js",
"author": "Katarzyna Dusza",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.js",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"collectCoverage": true,
"coverageFormats": [
"json",
"html"
]
},
"dependencies": {
"axios": "^0.17.1",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"bootstrap": "4.0.0-beta.2",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"install": "^0.10.2",
"lodash": "^4.17.5",
"react": "^16.3.1",
"react-ace": "^5.8.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.1.1",
"react-js-pagination": "^3.0.1",
"react-json-edit": "^0.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.2.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"webpack-cli": "^3.2.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.14.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.2.3",
"deep-freeze": "^0.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"jest-fetch-mock": "^1.5.0",
"jest-mock-axios": "^1.0.21",
"node-sass": "^4.7.2",
"path": "^0.12.7",
"react-addons-test-utils": "^15.4",
"redux-cache": "^0.3.0",
"redux-devtools": "^3.4.1",
"redux-mock-store": "^1.5.1",
"sass-loader": "^6.0.6",
"sinon": "^4.4.8",
"style-loader": "^0.19.0",
"webpack": "^4.28.4",
"webpack-dev-server": ">=3.1.11"
}
}