-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "@leveluptuts/fresh",
"version": "0.2.14",
"description": "They're dope, they're fresh.",
"author": "leveluptuts",
"license": "MIT",
"repository": "leveluptuts/fresh",
"main": "dist/index.js",
"module": "dist/fresh.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">= 16.8.0"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^9.8.5",
"husky": "^4.2.5",
"react": ">=16",
"react-dom": ">= 16.8.0",
"rollup-plugin-postcss": "^3.1.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"dependencies": {
"immer": "^7.0.7",
"react-is": "^16.13.1",
"react-tagsinput": "^3.19.0",
"state": "^0.2.0",
"zustand": "^3.0.1"
}
}