forked from tpdewolf/styled-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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": "@tpdewolf/styled-primitives",
"version": "2.1.0",
"license": "MIT",
"author": "Tim de Wolf",
"main": "dist/index.js",
"module": "dist/styled-primitives.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "github:tpdewolf/styled-primitives",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint"
},
"peerDependencies": {
"react": ">=16.12",
"styled-components": ">=5",
"styled-system": ">=5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"jest": {
"verbose": true
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^4.4.2",
"@types/styled-system": "^5.1.6",
"babel-plugin-styled-components": "^1.10.7",
"husky": "^3.0.9",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0",
"styled-system": "^5.1.4",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}