-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.9 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "pand",
"version": "1.0.0",
"main": "src/components/index.js",
"files": [
"src/components"
],
"repository": [
"[email protected]:canisminor1990/panda-design.git",
"[email protected]:PandaUED/panda-design.git"
],
"license": "MIT",
"scripts": {
"root": "yarn && yarn build:dll && yarn link",
"start": "yarn trello && yarn link pand && roadhog server",
"build": "yarn build:roadhog && yarn build:precache && yarn build:doc",
"merge": "open https://coding.net/u/canisminor1990/p/panda-design/git/merge/create?endWith=master",
"build:roadhog": "yarn link pand && roadhog build",
"build:precache": "sw-precache --config=.precache.js",
"build:dll": "yarn && roadhog buildDll",
"build:doc": "rm -r data && mkdir data && gulp build && gulp build:toc",
"trello": "open https://trello.com/b/Ae62EniM/fe",
"ssh": "ssh [email protected]",
"lint": "lint-staged",
"lint:style": "stylelint 'src/**/*.js'",
"lint:eslint": "eslint --fix --ext .js src"
},
"pre-commit": [
"lint"
],
"lint-staged": {
"src/**/*.scss": [
"prettier --single-quote --write",
"git add"
],
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"dva": "^2.0.3",
"dva-loading": "^1.0.2",
"history": "^4.7.2",
"nprogress": "^0.2.0",
"path": "^0.12.7",
"polished": "^1.7.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-lazyload": "^2.2.7",
"react-transition-group": "^2.2.0",
"rmc-feedback": "^1.0.0",
"rmc-nuka-carousel": "^2.2.0",
"styled-components": "^2.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-dva-hmr": "^0.3.2",
"babel-plugin-import": "^1.4.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"expect": "^1.20.2",
"front-matter": "^2.2.0",
"fs-extra": "^4.0.2",
"gulp": "^3.9.1",
"husky": "^0.12.0",
"lint-staged": "^4.2.1",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"postcss-pxtorem": "^4.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.7.0",
"redbox-react": "^1.3.2",
"roadhog": "^1.2.2",
"run-sequence": "^2.1.0",
"sass-loader": "^6.0.6",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.0.0",
"sw-precache": "^5.2.0"
}
}