-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "emoji_project_workflow",
"version": "1.0.0",
"description": "+Emoji develop/deploy",
"author": "Kenshin Wang <[email protected]>",
"license": "MIT",
"homepage": "http://ksria.com/emoji",
"repository": {
"type": "git",
"url": "git://github.com/kenshin/emoji.git"
},
"bugs": {
"url": "https://github.com/kenshin/emoji/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"develop": "cross-env NODE_ENV=development webpack --devtool=source-map --progress --colors --watch",
"publish": "cross-env NODE_ENV=production webpack --progress --colors",
"ext_dev": "cross-env NODE_ENV=development webpack --devtool=source-map --progress --colors --watch --config webpack.config.ext.js",
"ext_pub": "cross-env NODE_ENV=production webpack --progress --colors --config webpack.config.ext.js"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^5.1.1",
"css-loader": "^0.26.1",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"import-postcss": "^8.0.2",
"minimatch": "^3.0.4",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"react": "0.14.8",
"react-dom": "0.14.8",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "1.14.0"
},
"dependencies": {
"clean-webpack-plugin": "^0.1.14",
"copy-webpack-plugin": "^4.0.1"
}
}