-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
55
{
"name": "tilleggsstonader-htmlify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"ci": "yarn install --prefer-offline --frozen-lockfile",
"build": "ncc build src/server.ts -o build",
"start:dev": "NODE_ENV=development ncc run src/server.ts",
"lint": "eslint 'src/**/*'",
"lint:fix": "eslint 'src/**/*' --fix",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"react-dom": "^18.3.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"globals": "^15.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"winston": "^3.17.0"
}
}