-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.3 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-comment-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"start:dev": "webpack-dev-server --open --config webpack.dev.js",
"start:prod": "webpack-dev-server --open --config webpack.prod.js",
"analyze": "webpack --config webpack.prod.js --json | webpack-bundle-size-analyzer",
"test": "mocha --watch --require babel-register testSetup.js test/**/*.js",
"coverage": "nyc mocha --require babel-register testSetup.js test/**/*.js --exit"
},
"author": "Mandeep Pasbola",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"firebase": "^4.6.0",
"history": "^4.7.2",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.0.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.4",
"expect": "^21.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"nock": "^9.0.28",
"node-sass": "^4.5.3",
"nyc": "^11.3.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.6.1",
"redux-immutable-state-invariant": "^2.0.0",
"redux-mock-store": "^1.3.0",
"sass-loader": "^6.0.6",
"sinon": "^4.1.1",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"testSetup.js",
"src/firebase.js"
]
}
}