forked from oysterprotocol/webinterface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "oyster",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"base64-arraybuffer": "^0.1.5",
"bootstrap": "^3.3.7",
"crypto-js": "^3.1.9-1",
"file-saver": "^1.3.3",
"history": "^4.7.2",
"iota.lib.js": "^0.4.6",
"lodash": "^4.17.5",
"rc-progress": "^2.2.5",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-md-spinner": "^0.2.5",
"react-redux": "^5.0.6",
"react-router-redux": "next",
"react-select": "^1.2.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-observable": "^0.17.0",
"redux-persist": "^5.6.12",
"request": "^2.83.0",
"rxjs": "^5.5.6",
"uuid": "^3.2.1",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest-enzyme": "^4.2.0",
"nock": "^9.1.6",
"react-scripts": "1.0.17",
"regenerator-runtime": "^0.11.1",
"yarn-or-npm": "^2.0.4"
},
"scripts": {
"start": "cross-env NODE_PATH=src react-scripts start",
"build": "cross-env NODE_PATH=src react-scripts build",
"test": "jest",
"eject": "cross-env NODE_PATH=src react-scripts eject"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"modulePaths": [
"<rootDir>/src"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setup-tests.js",
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
}
}
}