-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.74 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.74 KB
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
{
"name": "tyr-frontend",
"private": true,
"version": "1.0.0",
"description": "Frontend Code for Tyr",
"scripts": {
"start": "webpack-dev-server --mode development --hot",
"build": "rm -rf ./dist && npm run lint && webpack --mode production --display-error-details",
"precommit": "lint-staged",
"lint": "eslint ."
},
"engines": {
"node": ">=9.8.0"
},
"author": {
"name": "Rob Herley",
"email": "robherley13@gmail.com",
"url": "https://robherley.xyz"
},
"contributors": [
"achen8@stevens.edu"
],
"license": "ISC",
"devDependencies": {
"@ant-design/icons": "^1.2.1",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"antd": "^3.16.2",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"concurrently": "^3.6.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^0.28.11",
"dayjs": "^1.8.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^7.3.0",
"node-sass": "^4.11.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.6",
"react-minimal-pie-chart": "^3.5.0",
"react-redux": "^5.1.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"@ibm/plex": "^1.2.1",
"axios": "^0.18.0",
"babel-eslint": "^8.2.5",
"brace": "^0.11.1",
"eva-icons": "^1.1.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-ace": "^6.4.0",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.0.0",
"react-quill": "^1.3.3",
"react-redux-loading-bar": "^4.1.0",
"sanitize-html": "^1.20.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}