forked from umijs/start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"private": true,
"name": "start",
"version": "0.0.1",
"description": "User defined project configuration on the web page to generate UMI project scaffolding.",
"main": "index.js",
"scripts": {
"start": "nodemon platforms/node/serve",
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\" \"npm run start\"",
"build": "concurrently \"npm run build:renderer\" \"npm run build:main\"",
"dev:main": "rollup -c -w",
"dev:renderer": "alita dev",
"build:main": "rollup -c",
"build:renderer": "alita build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:prettier": "prettier --check \"**/*\" --end-of-line auto",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"test": "umi-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umijs/start.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/umijs/start/issues"
},
"authors": [
"xiaohuoni <[email protected]> (https://github.com/xiaohuoni)",
"chenshuai2144 <[email protected]> (https://github.com/chenshuai2144)"
],
"homepage": "https://github.com/umijs/start#readme",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/pro-card": "^1.11.12",
"@ant-design/pro-form": "^1.22.0",
"@ant-design/pro-layout": "^6.17.1",
"@ant-design/pro-provider": "^1.4.12",
"alita": "2.8.2-beta.1",
"util": "^0.12.4"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/async-retry": "1.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cross-spawn": "^6.0.2",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.23",
"@types/mkdirp": "^1.0.1",
"@types/morgan": "^1.9.2",
"@types/mustache": "^4.1.1",
"@types/node": "^12.6.8",
"@types/prettier": "^2.2.3",
"@types/prompts": "2.0.1",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.3",
"@types/validate-npm-package-name": "3.0.0",
"@types/yargs": "^16.0.1",
"@types/yeoman-generator": "^4.11.3",
"@umijs/fabric": "2.5.7",
"@umijs/test": "3.4.4",
"@umijs/utils": "3.4.4",
"@vercel/ncc": "0.25.1",
"archiver": "^5.3.0",
"async-retry": "1.3.1",
"chalk": "^4.1.0",
"commander": "2.20.0",
"concurrently": "^6.0.1",
"cookie-parser": "^1.4.5",
"cpy": "7.3.0",
"cross-env": "^7.0.3",
"cross-spawn": "6.0.5",
"eslint": "^7.23.0",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"got": "10.7.0",
"iconutil": "^1.0.2",
"lint-staged": "^10.5.4",
"load-examples": "^1.0.1",
"morgan": "^1.10.0",
"mustache": "^4.2.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prompts": "2.1.0",
"rimraf": "3.0.0",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"sort-package-json": "^1.49.0",
"stylelint": "^13.12.0",
"tar": "4.4.10",
"tslib": "^2.2.0",
"typescript": "3.8.3",
"update-check": "1.5.4",
"validate-npm-package-name": "3.0.0",
"yargs": "^16.2.0",
"yorkie": "^2.0.0"
}
}