forked from s-h-a-d-o-w/alfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.21 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
{
"name": "alfc",
"version": "1.1.2",
"author": "Andreas Opferkuch <[email protected]>",
"license": "MIT",
"engines": {
"node": "^18"
},
"private": true,
"scripts": {
"install": "yarn install:bootstrap && yarn install:frontend && yarn install:server",
"install:bootstrap": "cd bootstrap && yarn install --frozen-lockfile",
"install:frontend": "cd frontend && yarn install --frozen-lockfile",
"install:server": "cd server && yarn install --frozen-lockfile",
"lint": "eslint --ignore-path .gitignore .",
"start": "concurrently \"cd server && yarn start\" \"cd frontend && yarn start\"",
"start:prod": "cross-env NODE_ENV=production node server/build",
"type-check": "concurrently \"tsc -P ./frontend/tsconfig.json\" \"tsc --noEmit -P ./server/tsconfig.json\""
},
"devDependencies": {
"@types/lodash": "4.14.159",
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"concurrently": "5.2.0",
"cross-env": "7.0.2",
"eslint": "7.6.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"kill-port": "1.6.1",
"prettier": "1.19.1",
"typescript": "3.9.7"
}
}