-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.94 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
{
"name": "carriage-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@typescript-eslint/parser": "^5.62.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-promise": "^6.1.1",
"pagination": "^0.4.6",
"react-paginate": "^8.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8"
},
"scripts": {
"heroku-postbuild": "npm run build:frontend && npm run build:server",
"start:frontend": "cd frontend && npm run start",
"start:server": "cd server && npm run dev",
"build:frontend": "cd frontend && npm run build",
"build:server": "cd server && npm run build",
"install:frontend": "cd frontend && npm install",
"install:server": "cd server && npm install",
"postinstall": "npm run install:frontend && npm run install:server",
"quiet-lint": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix --quiet",
"lint": "npx eslint . --ignore-path .eslintignore --ext .js,.jsx,.ts,.tsx --fix",
"format": "npx prettier --write \"**/*.{ts,js,tsx,jsx,css}\"",
"format:check": "npx prettier --check \"**/*.{ts,js,tsx,jsx,css}\"",
"type-check": "cd frontend && npm run type-check && cd ../server && npm run type-check",
"test:server": "cd server && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cornell-dti/carriage-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cornell-dti/carriage-web/issues"
},
"homepage": "https://github.com/cornell-dti/carriage-web#readme"
}