-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "freyja",
"version": "1.2.2",
"private": true,
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"scripts": {
"start": "node packages/server/dist/main.js",
"dev": "npm -w @bangbang93/freyja-server run dev",
"pm2": "pm2 startOrReload process.json",
"build": "npm -ws run build --if-present",
"test": "npm run lint && npm run build",
"lint": "eslint --ext .js,.ts,.vue .",
"snyk-protect": "snyk protect",
"migrate": "node packages/server/dist/script/migrate.js",
"update-browserlist-db": "npx update-browserslist-db@latest"
},
"dependencies": {
"snyk": "^1.1064.0"
},
"devDependencies": {
"@bangbang93/eslint-config-recommended": "^1.1.1",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^9.7.0",
"release-it": "^16.0.0",
"shelljs": "^0.8.5",
"typescript": "^5.2.2"
},
"snyk": true,
"workspaces": [
"packages/*"
]
}