generated from hack4impact-upenn/boilerplate-s2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.5 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
{
"name": "boilerplate-s2022",
"version": "1.0.0",
"repository": "https://github.com/hack4impact-upenn/boilerplate-s2022.git",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"start": "node server/dist/index.js",
"setup": "yarn install",
"clean": "rm -rf node_modules && cd client && yarn clean && cd ../server && yarn clean",
"dev": "cross-env NODE_ENV=development concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"server": "cd server && yarn start",
"client": "cd client && yarn start",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint && yarn prettier-check && yarn test",
"lint": "eslint --quiet --fix --ext .js,.ts,.tsx .",
"prettier-check": "prettier --check .",
"format": "prettier --write .",
"test": "cd server && yarn test",
"heroku-postbuild": "cd client && yarn install && yarn build && cd ../server && yarn install --production=false && yarn build"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.15.9",
"@mui/material": "^5.4.1",
"@mui/system": "^5.5.1",
"@mui/x-charts": "^6.19.8",
"@mui/x-date-pickers": "^6.19.9",
"@mui/x-date-pickers-pro": "^7.2.0",
"axios": "^1.1.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.2",
"styled-components": "^5.3.3",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.5"
}
}