forked from yassiz/TableCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·103 lines (103 loc) · 3.2 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
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
{
"name": "table-crm",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon server/index.js",
"start-dev": "DEBUG=express:* nodemon --inspect server/index.js",
"dev": "webpack-dev-server --hot --port 8080 --host 127.0.0.1 --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"compile": "webpack -p --config webpack.dev.js",
"format": "prettier --write --single-quote --print-width=120 --parser=flow --tab-width=2 \"src/**/*.{js,jsx}\"",
"lint": "eslint --quiet --fix . --ext .js --ext .jsx --cache --format node_modules/eslint-friendly-formatter || true",
"flow": "flow",
"lint-staged": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --print-width=120 --parser=flow --tab-width=2 \"src/**/*.{js,jsx}\"",
"eslint --quiet --fix --cache --format node_modules/eslint-friendly-formatter || true",
"git add"
],
"*.jsx": [
"prettier --write --single-quote --print-width=120 --parser=flow --tab-width=2 \"src/**/*.{js,jsx}\"",
"eslint --quiet --fix --cache --format node_modules/eslint-friendly-formatter || true",
"git add"
]
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/__test__/setupTests.js"
},
"precommit": "lint-staged",
"dependencies": {
"antd": "^3.1.1",
"axios": "^0.17.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"handsontable-pro": "^1.14.3",
"moment": "^2.19.1",
"mysql": "^2.15.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-handsontable": "^0.3.1",
"react-highcharts": "^15.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "^1.1.3",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-node": "^0.3.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.58.0",
"flow-typed": "^2.2.3",
"jest": "20.0.4",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.7.4",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-merge": "^4.1.0"
}
}