-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@nodite-light/root",
"version": "1.0.0",
"description": "A web framework with Vuetify & Express, use Typescript for everything.",
"repository": "[email protected]:nodite/nodite-light.git",
"author": "Oscaner Miao <[email protected]>",
"license": "Apache-2.0",
"private": true,
"keywords": [
"nodite",
"nodite-light",
"express",
"expressjs",
"vue",
"vuejs",
"vuetify",
"nodejs",
"typescript",
"javascript",
"admin",
"framework"
],
"scripts": {
"prepare": "husky",
"start": "lerna run start --parallel",
"start:admin-api": "lerna run start --scope @nodite-light/admin-api",
"start:admin-web": "lerna run start --scope @nodite-light/admin-web",
"build": "lerna run build",
"build:admin-api": "lerna run build --scope @nodite-light/admin-api",
"build:admin-web": "lerna run build --scope @nodite-light/admin-web",
"preview": "lerna run preview --parallel",
"preview:admin-web": "lerna run preview --scope @nodite-light/admin-web",
"openapi": "lerna run openapi --parallel",
"openapi:admin-web": "lerna run openapi --scope @nodite-light/admin-web --parallel",
"clean": "lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"test": "lerna run test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@types/jest": "^29.5.10",
"@types/jest-axe": "3.5.9",
"@types/node": "^20.10.4",
"@types/styled-components": "^5.1.31",
"@types/yargs": "17.0.32",
"@vitejs/plugin-vue": "^5.0.2",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"concurrently": "^8.2.2",
"husky": "9.0.11",
"jest": "^29.7.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"styled-components": "6.1.8",
"swagger-typescript-api": "^13.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.6.2",
"typescript": "^5.3.2",
"vitepress": "^1.0.0-rc.45",
"yargs": "17.7.2"
},
"workspaces": {
"packages": [
"packages/*",
"services/*",
"websites/*"
]
},
"dependencies": {
"tslib": "^2.6.2"
}
}