-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.81 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
{
"name": "@saasfe/we-app-react",
"version": "1.0.4",
"description": "We App React Context, React Router",
"homepage": "https://github.com/alsc-sfe/we-app-react",
"repository": {
"type": "git",
"url": "https://github.com/alsc-sfe/we-app-react"
},
"author": "zetay",
"files": [
"document",
"src",
"lib",
"es",
"library",
"_gitignore",
".gitignore",
".babelrc",
".eslintignore",
".eslintrc",
".stylelintignore",
".stylelintrc",
"abc.json",
"app.config.ts",
"package.json",
"README.md",
"tsconfig.json"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"dependencies": {
"@saasfe/we-app": "^1.2.6",
"tslib": "1"
},
"devDependencies": {
"@types/classnames": "2",
"@types/react": "16",
"@types/react-dom": "16",
"antd": "3",
"classnames": "2",
"copyfiles": "2",
"cross-env": "5",
"lesshint": "2",
"pre-commit": "1",
"prop-types": "15",
"react": "16",
"react-dom": "16",
"rimraf": "2",
"stylelint": "7",
"stylelint-config-standard": "16",
"@typescript-eslint/eslint-plugin": "1",
"@typescript-eslint/parser": "1",
"eslint": "5",
"eslint-config-ali": "7",
"eslint-plugin-import": "2",
"eslint-plugin-react": "7",
"eslint-plugin-react-hooks": "1",
"typescript": "3"
},
"peerDependencies": {
"classnames": ">=2.0.0",
"prop-types": ">=15.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"antd": ">=3.0.0"
},
"scripts": {
"lint": "npm run tslint && npm run stylelint",
"tslint": "eslint ./src --ext '.ts,.tsx,.js,.jsx' --fix",
"stylelint": "stylelint src/**/*.less --syntax less --fix"
},
"pre-commit": [
"lint"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}