forked from canisminor1990/canisminor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.7 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "CanisMinor",
"version": "2.0.0",
"private": true,
"description": "Collection of my designs, articles and open-source programs.",
"author": {
"name": "CanisMinor",
"email": "[email protected]",
"url": "https://canisminor.cc/"
},
"repository": {
"type": "git",
"url": "[email protected]:canisminor1990/canisminor.git",
"coding": "[email protected]:canisminor1990/canisminor.git"
},
"license": "MIT",
"scripts": {
"start": "concurrently \"yarn start:roadhog\" \"cd ./server && node-dev ./index.js\"",
"start:roadhog": "cross-env ESLINT=none roadhog dev",
"start:server": "cd ./server && forever start ./index.js",
"build": "yarn build:data && cross-env ESLINT=none roadhog build",
"build:debug": "cross-env ESLINT=none COMPRESS=none roadhog build",
"build:data": "cd ./server && yarn build",
"lint": "lint-staged",
"lint:style": "stylelint 'src/**/*.js'",
"lint:es": "eslint --fix --ext .js src"
},
"pre-commit": [
"lint"
],
"lint-staged": {
"README.md": [
"prettier --write",
"git add"
],
"markdown/**/*.md": [
"prettier --write",
"git add"
],
"./package.json": [
"prettier --trailing-comma all --single-quote --write",
"git add"
],
"./*.js": [
"eslint --fix",
"git add"
],
"src/**/*.scss": [
"prettier --trailing-comma all --single-quote --write",
"git add"
],
"src/**/*.js": [
"eslint --fix",
"git add"
],
"server/**/*.js": [
"eslint --fix",
"git add"
],
"markdown/**/*.js": [
"eslint --fix",
"git add"
]
},
"browserslist": [
"iOS >= 8",
"Android >= 4"
],
"dependencies": {
"dva": "^2.3.1",
"dva-loading": "^2.0.3",
"history": "^4.7.2",
"rc-util": "^4.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"@babel/preset-stage-0": "^7.0.0-beta.38",
"@babel/runtime": "^7.0.0-beta.38",
"babel-eslint": "^8.1.2",
"babel-plugin-dva-hmr": "^0.4.1",
"babel-plugin-import": "^1.6.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"concurrently": "^3.6.1",
"cross-env": "^5.2.0",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"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",
"exenv": "^1.2.2",
"expect": "^1.20.2",
"fs-extra": "^6.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"node-sass": "^4.9.0",
"path": "^0.12.7",
"polished": "^1.9.3",
"postcss-pxtorem": "^4.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.13.7",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"query-string": "5",
"rc-queue-anim": "^1.6.5",
"rc-scroll-anim": "^2.5.3",
"rc-tween-one": "^2.2.1",
"react-lifecycles-compat": "^3.0.4",
"react-markdown": "^3.3.4",
"react-responsive": "^4.1.0",
"react-scroll": "^1.7.10",
"react-typist": "^2.0.4",
"redbox-react": "^1.6.0",
"roadhog": "2.4.2",
"sass-loader": "^7.0.3",
"styled-components": "^3.3.3",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1",
"warning": "^4.0.1"
}
}