-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.03 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
{
"name": "react-reservation",
"version": "1.1.10-beta.7",
"description": "React Reservation",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Cedcn/react-reservation.git"
},
"homepage": "https://github.com/Cedcn/react-reservation",
"keywords": [
"reservation",
"calendar",
"time bucket",
"预约",
"在线预约",
"预约日历",
"时间段预约"
],
"module": "esm/index.js",
"typings": "types",
"scripts": {
"start": "react-scripts start",
"build": "yarn build:es && yarn build:lib && yarn build:dts",
"build:es": "cross-env NODE_ENV=es babel src/Reservation --out-dir esm --extensions .js,.jsx,.ts,.tsx --source-maps",
"build:lib": "cross-env NODE_ENV=umd babel src/Reservation --out-dir lib --extensions .js,.jsx,.ts,.tsx --source-maps",
"build:dts": "tsc -d -p ./src/Reservation --emitDeclarationOnly --outDir types",
"build-watch:es": "yarn run build:es --watch",
"test": "cross-env NODE_ENV=test jest",
"test-inspect": "babel-node --inspect node_modules/.bin/jest --runInBand"
},
"author": "cedcn",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.22",
"classnames": "^2.2.6",
"emotion-theming": "^10.0.19",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"babel-jest": "^26.3.0",
"cross-env": "^6.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"jest": "^26.4.2",
"jest-emotion": "^10.0.32",
"mockdate": "^3.0.2",
"normalize.css": "^8.0.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0",
"react-test-renderer": "^16.12.0",
"typescript": "^3.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}