-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "course-plus",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "parcel build index.html --public-url /course-plus/",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint --ext .jsx,.js,.ts,.tsx src",
"lint:fix": "yarn lint:eslint --fix",
"start": "parcel index.html",
"test": "react-scripts test"
},
"browserslist": {
"production": [
"last 3 chrome version",
"last 3 firefox version",
"last 3 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"axios": "^0.20.0",
"bootstrap": "^4.5.2",
"bootstrap-icons": "^1.0.0",
"chroma-js": "^2.1.0",
"ics": "^2.24.0",
"lodash": "^4.17.20",
"moment": "^2.28.0",
"query-string": "^6.13.1",
"react": "^16.8.0-0",
"react-bootstrap": "^1.3.0",
"react-bootstrap-typeahead": "^5.1.1",
"react-dom": "^16.13.1",
"react-github-btn": "^1.2.0",
"react-intersection-observer": "^8.28.5",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-tippy": "^1.4.0",
"swr": "^0.3.2",
"typescript": "^4.0.2",
"use-query-params": "^1.1.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.8",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-bootstrap-typeahead": "^3.4.6",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.1",
"sass": "^1.26.10",
"serve-static": "^1.14.1"
}
}