forked from nuitcoder/neubbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "neubbs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.prod.js",
"watch": "./node_modules/.bin/webpack --watch --config webpack.dev.js",
"lint:js": "./node_modules/.bin/eslint ./src",
"lint:css": "./node_modules/.bin/stylelint ./src/**/*.jsx",
"clear": "rm ./resources/js/*"
},
"pre-commit": [
"lint:js",
"lint:css"
],
"author": "Ahonn Jiang <ahonn95@outlook.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"codemirror": "^5.32.0",
"dva": "^2.1.0",
"history": "^4.7.2",
"intl": "^1.2.5",
"intl-locales-supported": "^1.0.0",
"link-to-inbox": "^1.2.0",
"lodash": "^4.17.4",
"path-to-regexp": "^2.1.0",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "^15.4.0",
"react-bootstrap": "^0.31.5",
"react-codemirror2": "^3.0.7",
"react-dom": "^15.4.0",
"react-highlight": "^0.10.0",
"react-infinite-scroller": "^1.1.2",
"react-intl": "^2.4.0",
"react-markdown": "^3.1.3",
"react-scroll": "^1.7.4",
"react-spinners": "^0.2.5",
"redux-form": "^7.2.0",
"styled-components": "^2.3.2",
"validatorjs": "^3.13.6"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-styled-components": "^1.3.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"jsx-loader": "^0.13.2",
"nyan-progress-webpack-plugin": "^1.2.0",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-merge": "^4.1.1"
}
}