This repository was archived by the owner on Aug 2, 2023. 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
96 lines (96 loc) · 2.88 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.88 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
88
89
90
91
92
93
94
95
96
{
"name": "shadowcraft-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --no-cache",
"build": "webpack --mode development",
"build-prod": "cross-env NODE_ENV=production webpack --mode production -p --define process.env.NODE_ENV='\"production\"'",
"start": "python app.py",
"watch": "webpack --mode development --watch --progress",
"install:python": "pip install -r requirements.txt",
"mongo": "mongod",
"dev": "npm-run-all --parallel watch start mongo",
"generate": "node utils/generate_static_items.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.3.13",
"cross-env": "^5.0.5",
"css-loader": "^0.26.1",
"csv-parse": "^1.2.1",
"deep-equal": "^1.0.1",
"eslint": "^3.16.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"git-revision-webpack-plugin": "^2.5.1",
"html-webpack-plugin": "^3.0.6",
"jest-cli": "^20.0.0",
"mongodb": "^2.2.29",
"node-sass": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "^6.0.7",
"style-loader": "0.13.1",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
"binary-search": "^1.3.2",
"chart.js": "^2.5.0",
"deep-clone": "^3.0.2",
"dot-prop-immutable": "^1.3.1",
"immutable": "^3.8.2",
"npm-run-all": "^4.1.1",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-chartjs-2": "^2.6.1",
"react-dom": "^16.0.0",
"react-google-ad": "^1.0.2",
"react-redux": "^5.0.3",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"babel": {
"presets": [
"env",
"react"
],
"compact": false
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-closing-brace-newline-before": null,
"block-closing-brace-space-before": null,
"block-opening-brace-newline-after": null,
"block-opening-brace-space-after": null,
"block-opening-brace-space-before": null,
"indentation": null,
"color-hex-case": null,
"color-hex-length": null,
"rule-empty-line-before": null,
"selector-list-comma-newline-after": null,
"length-zero-no-unit": null,
"no-missing-end-of-source-newline": null
}
}
}