-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "thesis-archive-2020",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/he": "^1.1.1",
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"he": "^1.2.0",
"html-react-parser": "^0.10.3",
"js-search": "^2.0.0",
"node-sass": "^4.13.1",
"puppeteer": "^2.1.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0",
"react-container-dimensions": "^1.4.1",
"react-device-detect": "^1.11.14",
"react-dom": "^16.13.1",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-spring": "9.0.0-canary.808.17.55c5691",
"react-use-gesture": "^7.0.0-beta.11",
"utility-types": "^3.10.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"scrapeSchedule": "ts-node -O '{\"module\": \"commonjs\"}' ./scripts/scrapeSchedule",
"scrapeStudentsJson": "ts-node -O '{\"module\": \"commonjs\"}' ./scripts/scrapeStudents2019Json",
"scrapePeoplePage": "ts-node -O '{\"module\": \"commonjs\"}' ./scripts/scrapePeoplePage",
"scrapeSlugs": "ts-node -O '{\"module\": \"commonjs\"}' ./scripts/scrape2020Slugs"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/js-search": "^1.4.0",
"@types/node": "^12.0.0",
"@types/puppeteer": "^2.0.1",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.3",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "~3.7.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}