-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "CCN",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p",
"build_windows": "set NODE_ENV=production && webpack -p",
"watch": "webpack --watch",
"test": "flow && jest",
"flow": "flow"
},
"keywords": [],
"author": "Innocent Amadi <tru2cent@gmail.com> (http://me.innocentamadi.com/)",
"license": "MIT",
"dependencies": {
"pretty-bytes": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react-app": "^2.2.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"flow-bin": "^0.46.0",
"html-webpack-plugin": "^2.28.0",
"img-loader": "^2.0.0",
"jest": "^20.0.3",
"react-test-renderer": "^15.5.4",
"style-loader": "^0.17.0",
"webpack": "3.4.1",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}