-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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": "react-kanban",
"version": "0.1.1",
"description": "Kanban board build with ReactJS and Redux",
"repository": {
"type": "git",
"url": "[email protected]:jiayihu/react-kanban.git"
},
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack",
"clean": "rm -rf ./dist && mkdir ./dist ",
"deploy": "gh-pages -d ./dist",
"flow": "flow",
"fmt": "prettier --single-quote --print-width 100 --trailing-comma es5 --write \"src/**/*.js?(x)\"",
"lint": "eslint ./src --ext js,jsx",
"prepush": "npm run lint && flow",
"start": "webpack-dev-server --inline --hot",
"test": "mocha ./src/**/*.spec.js --recursive --require ignore-styles --compilers js:babel-register"
},
"author": "jiayi hu",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-flow-react-proptypes": "^3.4.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.50.0",
"gh-pages": "^1.0.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"ignore-styles": "^5.0.1",
"mocha": "^2.4.5",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prettier": "^1.5.3",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglify-js": "^2.8.29",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"localforage": "^1.4.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dnd": "^2.1.2",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.0.1",
"react-redux": "^5.0.5",
"redux": "^3.5.2",
"uuid": "^2.0.1"
}
}