-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.39 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
{
"name": "ntnui-general-assembly-voting-system",
"version": "1.0.0",
"description": "This application will authenticate and register attendants at general assemblies for the groups in NTNUI.",
"scripts": {
"install:all": "npm ci && cd backend && npm ci && cd ../frontend && npm ci",
"frontend": "cd frontend && npm run dev",
"backend": "cd backend && npm run dev",
"backend:build": "cd backend && npm run build",
"frontend:build": "cd frontend && npm run build",
"db": "cd backend && npm run db",
"stop-db": "cd backend && npm run stop-db",
"prettier:format": "npx prettier --write .",
"prettier:check": "prettier --check .",
"lint": "eslint . --ext .ts",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"e2e": "cd frontend && npm run cypress:open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntnui/vote2.git"
},
"keywords": [
"NTNUI"
],
"author": "NTNUI",
"license": "MIT",
"bugs": {
"url": "https://github.com/ntnui/vote2/issues"
},
"homepage": "https://github.com/ntnui/vote2#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}