This repository was archived by the owner on Aug 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.47 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
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": "ergatejs",
"version": "1.0.0",
"description": "ergatejs boilerplate",
"private": true,
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"autod": "autod",
"start": "egg-scripts start --daemon --title=egg-server-ergatejs",
"stop": "egg-scripts stop --title=egg-server-ergatejs",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"build": "APP_ROOT=$PWD/app/view umi build",
"cov": "egg-bin cov",
"clean": "ets clean",
"ci": "npm run lint && npm run cov && npm run tsc",
"tsc": "ets && tsc -p tsconfig.json",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"lint": "npm run be-lint && npm run fe-lint",
"be-lint": "eslint --fix --ext .ts --ignore-pattern 'app/view/' .",
"fe-lint": "eslint --fix --ext .ts --ext .tsx -c app/view/.eslintrc app/view/",
"fe-prettier": "prettier --write --config app/view/.prettierrc 'app/view/**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"gitHooks": {
"pre-commit": ""
},
"dependencies": {
"dotenv": "^8.2.0",
"egg": "^2.6.1",
"egg-jwt": "^3.1.7",
"egg-scripts": "^2.6.0",
"egg-sequelize": "^5.2.1",
"egg-view-assets": "^1.6.0",
"egg-view-nunjucks": "^2.2.0",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@ant-design/icons": "^4.1.0",
"@ant-design/pro-layout": "^5.0.9",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/supertest": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@umijs/preset-react": "^1.4.8",
"antd": "^4.1.0",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.8.0",
"egg-mock": "^3.16.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-egg": "^8.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"tslib": "^1.9.0",
"typescript": "^3.0.0",
"umi": "^3.0.16"
},
"engines": {
"node": ">=8.9.0"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"eslintIgnore": [
"coverage"
],
"author": "Suyi <thonatos.yang@gmail.com>",
"license": "MIT"
}