-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·86 lines (86 loc) · 2.25 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
{
"name": "frontend-react",
"version": "1.0.0",
"description": "React implementation of the http://etheroscope.alice.si",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack",
"test": "cross-env nyc mocha",
"watch:test": "mocha --watch --compilers js:babel-register",
"start": "npm run dev",
"vm-start": "forever start node_modules/http-server/bin/http-server",
"clean": "npm prune && npm dedupe",
"setup": "npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/Etheroscope/frontend-react"
},
"author": "Sixte de Maupeou",
"license": "MIT",
"bugs": {
"url": "https://github.com/Etheroscope/frontend-react/issues"
},
"homepage": "https://github.com/Etheroscope/frontend-react",
"dependencies": {
"babel-core": "6.13.2",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "1.0.3",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"babel-register": "6.11.6",
"css-loader": "0.23.1",
"file-loader": "0.9.0",
"forever": "^0.15.3",
"http-server": "0.9.0",
"normalize.css": "^7.0.0",
"ramda": "^0.25.0",
"react": "^15.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-delay": "^0.1.0",
"react-delay-render": "^0.1.1",
"react-dom": "^15.6.2",
"react-fa": "^5.0.0",
"react-highcharts": "^13.0.0",
"react-modal": "^3.1.6",
"react-router": "2.6.1",
"react-validation": "^3.0.7",
"style-loader": "^0.13.0",
"styled-components": "^2.2.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.10.1",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"cross-env": "2.0.0",
"eslint": "3.2.2",
"eslint-config-kentcdodds": "^9.0.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0"
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 100,
"function": 100,
"lines": 100,
"statements": 100,
"reporter": [
"text",
"lcov"
],
"exclude": [
"**/*.(test|stub).js",
"**/helpers/**",
"**/fixtures/**",
"**/build/**"
],
"sourceMap": false,
"instrument": false,
"require": [
"babel-register"
]
}
}