-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "@icedesign/ice-antd-scaffold",
"version": "2.1.4",
"description": "Ant Design and icejs scaffold, use TypeScript.",
"files": [
"mock/",
"src/",
"build/",
"public/",
"tests/",
"_gitignore",
"_editorconfig",
"_eslintignore",
"_eslintrc.js",
"_prettierignore",
"_prettierrc.js",
"_stylelintignore",
"_stylelintrc.js",
"build.json",
"screenshot.png",
"tsconfig.json",
"jsconfig.json"
],
"dependencies": {
"@ant-design/icons": "^4.0.2",
"@ant-design/pro-layout": "^6.5.1",
"antd": "^4.0.0",
"moment": "^2.24.0",
"prop-types": "^15.5.8",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@iceworks/spec": "^1.0.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"build-plugin-antd": "^0.1.2",
"build-plugin-ignore-style": "^0.1.0",
"eslint": "^7.30.0",
"ice.js": "^2.0.0",
"stylelint": "^13.1.0"
},
"scripts": {
"start": "icejs start --config build.config.ts",
"build": "icejs build --config build.config.ts",
"prepublishOnly": "npm run build",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --cache --ext .js,.jsx ./",
"stylelint": "stylelint ./**/*.scss"
},
"publishConfig": {
"access": "public"
},
"scaffoldConfig": {
"name": "Ant Design Scaffold",
"title": "Ant Design Scaffold",
"category": "Basic",
"screenshot": "https://img.alicdn.com/imgextra/i1/O1CN01I3NPfJ1zvSR4cSVws_!!6000000006776-2-tps-3580-2074.png"
},
"repository": {
"type": "git",
"url": "https://github.com/ice-lab/react-materials/tree/master/scaffolds/antd-lite"
}
}