-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.55 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.55 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
{
"name": "@kevin-infra/kevin",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build:server": "npm run build --prefix kevin.server",
"build:client": "npm run build --prefix kevin.ui",
"build:core": "npm run build --prefix kevin.core",
"build:redis": "npm run build --prefix kevin.redis",
"build:aws": "npm run build --prefix kevin.aws",
"build:solution": "npm run build:core && npm run build:server && npm run build:client",
"install:server": "npm ci --prefix kevin.server",
"install:client": "npm ci --prefix kevin.ui",
"install:core": "npm ci --prefix kevin.core",
"install:redis": "npm ci --prefix kevin.redis",
"install:aws": "npm ci --prefix kevin.aws",
"install:solution": "npm run install:core && npm run install:redis && npm run install:server && npm run install:client",
"ui:copy-dist": "cp -R ./kevin.ui/build/ ./kevin.server/dist/public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TKul6/Kevin.git"
},
"author": "TKul6",
"license": "MIT",
"bugs": {
"url": "https://github.com/TKul6/Kevin/issues"
},
"homepage": "https://github.com/TKul6/Kevin#readme",
"devDependencies": {
"prettier": "2.8.3",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"eslint": "^8.35.0",
"typescript": "^4.9.4"
},
"dependencies": {},
"description": ""
}