-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.62 KB
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
{
"name": "prosjekt-2",
"version": "1.0.0",
"private": true,
"description": "Bingewatcher",
"homepage": "https://bingewatcher.magnusbyrkjeland.no",
"directories": {
"doc": "docs"
},
"scripts": {
"setup": "npm install --save-dev concurrently && concurrently \"npm install\" \"cd ./client && npm install\" \"cd ./server && npm install\"",
"setup:nonconcurrent": "npm install && cd ./client && npm install && cd ../server && npm install",
"setup:ci": "npm ci && cd ./client && npm ci && cd ../server && npm ci",
"dev": "npm install --save-dev concurrently && concurrently \"cd ./client && npm run dev\" \"cd ./server && npm run dev\" ",
"dev:client": "cd ./client && npm run dev",
"dev:server": "cd ./server && npm run dev",
"test": "npm install --save-dev concurrently && concurrently \"cd ./client && npm run test\" \"cd ./server && npm run test\"",
"test:client": "cd ./client && npm run test",
"test:server": "cd ./server && npm run test",
"coverage:client": "cd ./client && npm run coverage",
"build": "npm run build:client",
"build:client": "cd ./client && npm run build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,json && npx stylelint --fix \"**/src/**/*{css, js, ts, tsx, jsx}\"",
"lint:style": "npx stylelint \"**/src/**/*{scss, css, js, ts, tsx, jsx}\"",
"lint:style:fix": "npx stylelint --fix \"**/src/**/*{css, js, ts, tsx, jsx}\"",
"format": "prettier --write '**/src/**/*.{ts,tsx,js,jsx,scss,json,css}' --config .prettierrc.cjs",
"pipeline": "npm run setup:ci && npm run lint && npm run test:client && npm run test:server && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/sleipner01/bingewatcher"
},
"author": "Team 16 | IT2810 NTNU",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss-less": "^6.0.0",
"postcss-lit": "^1.1.0",
"prettier": "^3.0.3",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-scss": "^5.1.0",
"typescript": "^5.2.2"
}
}