-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 3.86 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 3.86 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
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
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "react-component",
"version": "1.0.0",
"description": "react 组件集合",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Aus0049/react-component.git"
},
"keywords": [
"react"
],
"author": "Aus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aus0049/react-component/issues"
},
"homepage": "https://github.com/Aus0049/react-component#readme",
"scripts": {
"clean": "rimraf dist",
"compile": "better-npm-run compile",
"lint": "eslint src/components/** src/containers/** src/layout/** src/routes/**",
"lint:fix": "npm run lint -- --fix",
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"deploy": "better-npm-run deploy",
"deploy:dev": "better-npm-run deploy:dev",
"deploy:prod": "better-npm-run deploy:prod",
"online": "better-npm-run online"
},
"betterScripts": {
"compile": {
"command": "node bin/compile",
"env": {
"DEBUG": "app:*"
}
},
"dev": {
"command": "nodemon --exec node bin/server --ignore dist --ignore coverage --ignore tests --ignore src",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run clean && npm run compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy:dev": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy:prod": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "node bin/server",
"env": {
"DEBUG": "app:*"
}
},
"online": {
"command": "node bin/online",
"env": {
"NODE_ENV": "production",
"PORT": 3000,
"DEBUG": "app:*"
}
}
},
"dependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.11.6",
"better-npm-run": "0.0.11",
"classnames": "^2.2.5",
"component-font-awesome": "0.0.4",
"create-react-class": "^15.5.3",
"css-loader": "^0.25.0",
"cssnano": "^3.7.4",
"debug": "^2.2.0",
"exif-js": "^2.3.0",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"fs-extra": "^0.30.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.6.5",
"ip": "^1.1.2",
"json-loader": "^0.5.4",
"moment": "^2.18.1",
"node-sass": "^3.13.1",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.13.0",
"postcss-plugin-px2rem": "^0.7.0",
"postcss-px2rem": "^0.3.0",
"postcss-pxtorem": "^4.0.0",
"rc-touchable": "^1.0.13",
"react": "^15.4.2",
"react-addons": "^0.9.1-deprecated",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.0.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.0",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.6",
"webpack": "^1.15.0",
"yargs": "^5.0.0",
"zscroller": "^0.3.1"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.17.0",
"babel-eslint": "^8.0.1",
"connect-history-api-fallback": "^1.3.0",
"eslint": "^4.7.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.4.0",
"express": "^4.14.0",
"node-sass": "^3.13.0",
"nodemon": "^1.10.2",
"postcss-loader": "^0.13.0",
"react-addons-test-utils": "^15.0.0",
"redbox-react": "^1.2.10",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
}
}