-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "@critrace/website",
"version": "0.0.1",
"description": "The critrace.com user interface",
"main": "index.js",
"scripts": {
"clean": "rm -r ./build || true",
"build": "npm run clean && webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.config.js",
"lint": "eslint ./src/**.tsx",
"now-build": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"eslintConfig": {
"extends": [
"@jchancehud/eslint-config-typescript"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/critrace/website.git"
},
"author": "Chance Hudson",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/critrace/website/issues"
},
"homepage": "https://github.com/critrace/website#readme",
"dependencies": {
"axios": "^0.18.0",
"email-validator": "^2.0.4",
"idx": "^2.5.5",
"jsonwebtoken": "^8.5.1",
"lodash.chunk": "^4.2.0",
"lodash.groupby": "^4.6.0",
"lodash.keyby": "^4.6.0",
"lodash.omitby": "^4.6.0",
"lodash.throttle": "^4.1.1",
"lodash.truncate": "^4.4.2",
"lodash.uniqby": "^4.7.0",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"moment": "^2.24.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-icons": "^3.5.0",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@jchancehud/eslint-config-typescript": "^0.0.5",
"@types/axios": "^0.14.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.keyby": "^4.6.6",
"@types/lodash.omitby": "^4.6.6",
"@types/lodash.startcase": "^4.4.6",
"@types/lodash.throttle": "^4.1.6",
"@types/lodash.truncate": "^4.4.6",
"@types/lodash.uniqby": "^4.7.6",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"babel-loader": "^8.0.5",
"eslint": "^5.15.3",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"lodash.startcase": "^4.4.0",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}