-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 1.95 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"private": true,
"name": "dashboard",
"version": "1.0.0",
"description": "JSer.info Data Dashboard",
"main": "lib/dashboard.js",
"browserify": {
"transform": [
"glslify"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"keywords": [
"jser"
],
"repository": {
"type": "git",
"url": "https://github.com/jser/dashboard.git"
},
"bugs": {
"url": "https://github.com/jser/dashboard/issues"
},
"homepage": "https://jser.info/data-dashboard/",
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"autoprefixer": "^6.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"npm-run-all": "^3.1.2",
"power-assert": "^1.4.2",
"prettier": "^1.8.1",
"react-scripts": "^1.1.5",
"rimraf": "^2.5.4"
},
"dependencies": {
"@jser/stat": "^2.0.0",
"babel-polyfill": "^6.20.0",
"bootstrap": "3",
"lodash.countby": "^4.6.0",
"lodash.groupby": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.sortby": "^4.7.0",
"moment": "^2.17.1",
"normalize.css": "^5.0.0",
"prop-types": "^15.6.2",
"react": "^15.4.1",
"react-bootstrap-table": "^2.8.2",
"react-date-picker": "^5.3.28",
"react-datepicker": "^0.39.0",
"react-dom": "^15.4.1",
"react-heat-calendar": "^1.0.3",
"react-pivot": "^1.18.3",
"react-stickynode": "^1.2.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}