-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "d-mail",
"version": "0.1.0",
"description": "Distributed, decentralized mail",
"main": "js/main.js",
"author": "Noman",
"license": "UNLICENSED",
"dependencies": {
"buffer": "^5.0.2",
"classnames": "^2.2.5",
"dexie": "^1.5.1",
"font-awesome": "^4.7.0",
"history": "^4.5.1",
"idb-pull-blob-store": "^0.5.1",
"immutable": "^3.8.1",
"ipfs": "^0.20.4",
"ipfs-repo": "^0.11.2",
"ipld": "^0.6.0",
"moment": "^2.17.1",
"normalize.css": "^4.2.0",
"q": "^1.4.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-active-component": "^4.0.0",
"react-router-redux": "^4.0.7",
"readable-stream": "^2.2.1",
"redux": "^3.6.0",
"redux-actions": "^0.13.0",
"redux-thunk": "^2.1.0",
"web3": "^0.18.2",
"wrtc": "0.0.61"
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"file-loader": "^0.8.5",
"font-awesome-webpack": "0.0.4",
"jest-cli": "^17.0.3",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"node-sass": "^3.13.0",
"path": "^0.12.7",
"raw-loader": "^0.5.1",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-loader": "^2.4.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"sass": "^0.5.0",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-babel-jest": "^1.0.4",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"testPathDirs": [
"<rootDir>/js/"
],
"moduleFileExtensions": [
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme"
]
},
"scripts": {
"build": "npm run lint && webpack --config webpack.config.prod.js -p",
"start": "webpack-dev-server --d --hot --inline --progress --port 5579",
"deploy": "",
"lint": "eslint js"
}
}