This repository was archived by the owner on Feb 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.42 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.42 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "chill-dashboard",
"version": "1.0.0-alpha.1",
"description": "Chill Dashboard",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"clean": "rimraf dist",
"build:app": "webpack --config=webpack.config.production.js --progress --colors -p",
"build": "NODE_ENV=production run-s lint clean build:app",
"lint": "eslint src test; exit 0",
"lint:fix": "eslint src test --fix; exit 0"
},
"keywords": [
"chill",
"dashboard"
],
"authors": [
"Bishal Shrestha",
"Deepak Adhikari",
"Romit Amgai",
"Kabir Baidhya",
"Pratish Shrestha"
],
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.26.0",
"bootstrap": "^3.3.7",
"chill-core": "https://github.com/leapfrogtechnology/chill-core#master",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router-dom": "^4.0.0",
"react-tooltip": "^3.3.0",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.3.3",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.18.0",
"codecov": "^2.1.0",
"compression": "^1.6.2",
"cors": "^2.8.1",
"css-loader": "^0.28.0",
"enzyme": "^2.7.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.2",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.10.8"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}