-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "@alitajs/charts",
"version": "0.3.2",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"docs:deploy": "gh-pages -d dist",
"compile": "father-build",
"deploy": "npm run build && npm run docs:deploy",
"release": "npm run compile && npm run publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"entry": "node ./scripts/entry.js",
"test": "umi-test",
"publish": "npm publish --access public",
"test:coverage": "umi-test --coverage",
"newc": "node scripts/createPlusTemplate.js"
},
"files": [
"es",
"lib",
".md",
"docs"
],
"main": "lib/index.js",
"module": "es/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alitajs/f2",
"branch": "main"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"react": "^16.12.0"
},
"dependencies": {
"@alitajs/f2": "0.0.9",
"@alitajs/theme": "^1.3.2",
"@alitajs/tracker": "^0.0.3",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"sitemap": "^6.3.3"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/lodash": "^4.14.177",
"@umijs/test": "^3.3.7",
"babel-plugin-version": "^0.2.3",
"dumi": "1.1.25",
"dumi-theme-mobile": "1.1.8",
"father-build": "^1.19.1",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "17",
"react-dom": "17",
"yorkie": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}