forked from nocobase/nocobase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.38 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
{
"name": "root",
"private": true,
"scripts": {
"start": "cd packages/app && npm start",
"start-server": "nodemon",
"start-client": "cd packages/app && npx umi dev",
"start-docs": "dumi dev",
"build-docs": "dumi build",
"pm2-start": "npx pm2 start packages/api/lib/index.js",
"build-app": "cd packages/app && npm run build",
"bootstrap": "lerna bootstrap --no-ci",
"build": "father-build",
"clean": "lerna clean",
"db-migrate": "ts-node -r dotenv/config ./packages/api/src/migrate.ts",
"lint": "eslint --ext .ts,.tsx,.js \"packages/*/src/**.@(ts|tsx|js)\" --fix",
"test": "npm run lint && jest",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"version:alpha": "lerna version prerelease --preid alpha --force-publish=* --no-git-tag-version -m \"chore(versions): publish packages %s\"",
"release:force": "lerna publish from-package --yes",
"release": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nocobase/nocobase.git",
"branch": "master",
"platform": "github"
},
"devDependencies": {
"@koa/router": "^9.3.1",
"@types/bcrypt": "^3.0.0",
"@types/jest": "^26.0.4",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mount": "^4.0.0",
"@types/koa__router": "^8.0.2",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.23",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"@umijs/plugin-antd": "^0.9.1",
"antd": "^4.15.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"dumi": "^1.0.12",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"father-build": "^1.19.2",
"jest": "^26.1.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"lerna": "^3.22.0",
"lint-staged": "^10.0.7",
"mysql2": "^2.1.0",
"nodemon": "^2.0.4",
"path-to-regexp": "^6.1.0",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"pm2": "^4.5.6",
"prettier": "^1.19.1",
"sequelize": "^6.3.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"yorkie": "^2.0.0"
}
}