forked from NTNUI/opptak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.38 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
{
"name": "ntnui-application-form-wrapper",
"version": "0.1.0",
"description": "NTNUI Admin application form wrapper",
"scripts": {
"prefrontend": "cd frontend && npm install",
"frontend": "cd frontend && npm run start",
"prebackend": "cd backend && npm install",
"backend": "cd backend && npx nodemon --exec npx ts-node app.ts",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NTNUI/it2901-v22.git"
},
"author": "NTNUI",
"bugs": {
"url": "https://github.com/NTNUI/it2901-v22/issues"
},
"homepage": "https://github.com/NTNUI/it2901-v22#readme",
"devDependencies": {
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}