This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.36 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
{
"name": "hyperschedule-react",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rm -rf public/static",
"build": "rm -rf public/static && webpack --config webpack.production.js",
"builddev": "rm -rf public/static && webpack --config webpack.development.js",
"watch": "rm -rf public/static && webpack --watch --config webpack.development.js",
"test": "webpack --config webpack.test.js",
"server": "./server.js",
"dev": "run-p server watch",
"lint": "eslint --ext .js,.jsx src *.js; prettier --list-different *.json src/**/*.css src/**/*.json",
"lintfix": "eslint --fix --ext .js,.jsx src *.js; prettier --write *.json src/**/*.css src/**/*.json"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx,json,css}": [
"./pre-commit-lint.bash"
]
},
"ignore": [
"package.json"
]
},
"devDependencies": {
"@types/node": "^10.7.0",
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.3.0",
"express": "^4.16.3",
"husky": "^1.0.0-rc.13",
"ical-generator": "^1.0.3",
"immutable": "^3.8.2",
"ionicons": "^4.3.0",
"jspdf": "^1.4.1",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"precise-commits": "^1.0.2",
"prettier": "^1.14.2",
"randomcolor": "^0.5.3",
"react": "^16.2.0",
"react-dom": "^16.4.1",
"react-immutable-proptypes": "^2.1.0",
"react-measure": "^2.0.2",
"react-redux": "^5.0.6",
"react-scripts": "1.1.4",
"react-sortable-hoc": "^0.8.3",
"react-virtualized": "^9.16.1",
"redux": "^4.0.0",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-merge": "^4.1.4",
"webpack-shell-plugin": "^0.5.0",
"yarn-run-all": "^3.1.1"
}
}