-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.52 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
{
"name": "ntnui-admission-form-wrapper",
"author": {
"name": "NTNUI Sprint",
"email": "[email protected]",
"url": "https://ntnui.no/sprint"
},
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "NTNUI Admin admission form wrapper",
"repository": "github:NTNUI/opptak",
"bugs": {
"url": "https://github.com/NTNUI/opptak/issues"
},
"homepage": "https://github.com/NTNUI/opptak#readme",
"scripts": {
"prefrontend": "cd frontend && npm install",
"prebackend": "cd backend && npm install",
"frontend": "cd frontend && npm run start",
"backend": "cd backend && docker compose up --build",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "npm install && prettier --check .",
"eslint": "npm install && eslint . --ext ts --ext tsx",
"check": "npm install && eslint . --ext ts --ext tsx && prettier --check .",
"fix": "npm install && npx prettier --write . && eslint . --ext .ts,.tsx --fix",
"clean": "rm -rf node_modules && rm -rf frontend/node_modules && rm -rf backend/node_modules"
},
"devDependencies": {
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}