-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.14 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
{
"name": "worcar",
"version": "0.0.1",
"description": "Word Dictionaly Tool for language beginners.",
"repository": "https://github.com/muyuu/worcar/",
"main": "index.js",
"scripts": {
"build": "webpack",
"cp:font": "npm run cp:font:file && npm run cp:font:css",
"cp:font:file": "cpx \"./node_modules/font-awesome/fonts/**/{*.otf,*.eot,*.svg,*.ttf,*.woff*}\" ./dist/assets/fonts",
"cp:font:css": "cpx \"./node_modules/font-awesome/css/font-awesome.min.css\" ./dist/assets/css",
"check": "flow check",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint ./src",
"stylelint": "stylelint ./src/css/**/*.css",
"serve": "webpack-dev-server --history-api-fallback",
"deploy": "firebase deploy",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run serve & npm run watch",
"watch": "webpack --progress --colors --watch"
},
"keywords": [],
"author": "muyuu",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"cpx": "^1.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-react": "^6.8.0",
"espowerify": "^1.1.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"firebase": "^3.6.4",
"firebase-tools": "^3.2.1",
"flow-bin": "^0.37.4",
"font-awesome": "^4.7.0",
"node-sass": "^4.1.1",
"postcss": "^5.2.12",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.0",
"postcss-mixins": "^5.4.1",
"power-assert": "^1.4.2",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-markdown": "^2.4.4",
"react-router": "^3.0.1",
"react-shortcuts": "^1.3.1",
"sass-loader": "^5.0.1",
"shortid": "^2.2.6",
"standby.css": "^1.1.1",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^1.16.3"
}
}