-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
{
"name": "egg-prisma-template-ts",
"version": "1.0.0",
"description": "基于docker 的 eggjs + prisma + mysql 的node开发模板",
"private": true,
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-egg-prisma-template-ts",
"start:docker": "egg-scripts start --title=egg-server-egg-prisma-template-ts",
"stop": "egg-scripts stop --title=egg-server-egg-prisma-template-ts",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"build:docker": "rm -rf logs && rm -rf run && docker build -t prisma-egg-node .",
"test-local": "egg-bin test",
"test": "npm run lint -- --fix && npm run test-local",
"cov": "egg-bin cov",
"tsc": "ets && tsc -p tsconfig.json",
"ci": "npm run lint && npm run cov && npm run tsc",
"autod": "autod",
"db:c": "npx prisma migrate dev --name db-change",
"db:ui": "npx prisma studio",
"db:pull": "npx prisma db pull",
"model:b": "npx prisma generate",
"lint": "eslint . --ext .ts --resolve-plugins-relative-to .",
"clean": "ets clean"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"await-stream-ready": "^1.0.1",
"axios": "^1.2.1",
"cos-nodejs-sdk-v5": "^2.11.18",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"egg": "^3.9.1",
"egg-cors": "^2.2.3",
"egg-redis": "^2.4.0",
"egg-router-plus": "^2.0.0",
"egg-scripts": "^2.17.0",
"ioredis": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"koa-jwt": "^4.0.3",
"stream-wormhole": "^1.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/supertest": "^2.0.0",
"@types/uuid": "^9.0.0",
"autod": "^3.1.2",
"autod-egg": "^1.1.0",
"egg-bin": "^5.9.0",
"egg-ci": "^2.1.0",
"egg-mock": "^3.16.0",
"eslint": "^8.0.0",
"eslint-config-egg": "^12.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"prisma": "^4.7.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.0.0"
},
"ci": {
"version": "14, 16, 18"
},
"repository": {
"type": "git",
"url": "https://github.com/MrGaoGang/frontend-tookit/packages/egg-prisma-template-ts"
},
"eslintIgnore": [
"coverage"
],
"author": "mrgaogang",
"license": "MIT"
}