-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "aCharts",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development parcel ./src/index.html -p 3000",
"build": "cross-env NODE_ENV=production parcel build ./src/index.html --public-url ./",
"predeploy": "npm run clean && npm run build",
"deploy": "gh-pages -d dist",
"clean": "rimraf dist",
"lint": "npm run lint:js && npm run lint:css",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern !'.eslintrc.js'",
"lint:stylelint": "stylelint",
"lint:js": "npm run lint:eslint -- . ",
"lint:css": "npm run lint:stylelint -- \"src/**/components/**/*.js\"",
"lint:staged": "lint-staged",
"precommit": "npm run lint:staged"
},
"lint-staged": {
"*.js": "npm run lint:eslint",
"src/**/components/**/*.js": "npm run lint:stylelint"
},
"author": "arthur",
"license": "MIT",
"private": false,
"dependencies": {
"create-react-context": "^0.2.1",
"d3-array": "^1.2.1",
"d3-axis": "^1.0.8",
"d3-scale": "^2.0.0",
"d3-selection": "^1.3.0",
"d3-shape": "^1.2.0",
"d3-zoom": "^1.7.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"shortid": "^2.2.8",
"styled-components": "^3.0.2"
},
"devDependencies": {
"@17media/eslint-config-17media": "~1.2.0",
"babel-eslint": "~8.2.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "~4.19.0",
"eslint-import-resolver-babel-module": "~4.0.0",
"eslint-plugin-import": "~2.9.0",
"eslint-plugin-react": "~7.7.0",
"gh-pages": "^1.1.0",
"husky": "~0.14.3",
"lint-staged": "~7.0.0",
"parcel-bundler": "^1.5.1",
"stylelint": "~9.1.3",
"stylelint-processor-styled-components": "~1.3.1"
}
}