-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
127 lines (127 loc) · 2.97 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "nano-css",
"version": "5.5.0",
"description": "Smallest 5th gen CSS-in-JS library",
"main": "index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/streamich/nano-css.git"
},
"license": "Unlicense",
"scripts": {
"lint": "eslint ./index.js",
"lint:fix": "yarn lint --fix",
"start": "yarn storybook",
"clean": "rimraf dist && yarn test:visual:clean",
"test": "yarn lint && jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:visual": "npm run storybook",
"test:visual:build": "build-storybook",
"test:visual:clean": "rimraf storybook-static",
"demo": "webpack-dev-server --config demo/webpack.config.js",
"prettier": "prettier --write '**/*.ts'",
"precommit": "lint-staged",
"prepush": "yarn test",
"storybook": "start-storybook -p 6010"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15",
"css-tree": "^1.1.2",
"csstype": "^3.1.2",
"fastest-stable-stringify": "^2.0.2",
"inline-style-prefixer": "^7.0.1",
"rtl-css-js": "^1.16.1",
"stacktrace-js": "^2.0.2",
"stylis": "^4.3.0"
},
"devDependencies": {
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/react": "6.5.16",
"@types/jest": "26.0.24",
"@types/node": "14.18.63",
"@types/prop-types": "15.7.14",
"@types/react": "17.0.83",
"eslint": "7.32.0",
"git-cz": "4.9.0",
"husky": "4.3.8",
"iconista": "2.22.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"libreact": "2.13.3",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-loader": "8.4.0",
"tslib": "2.8.1",
"typescript": "4.9.5",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "3.11.3",
"yarn": "1.22.22"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"jest": {
"transformIgnorePatterns": [],
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?)$",
"setupFiles": [
"./addon/__tests__/setup.js"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"jsxBracketSameLine": false
},
"keywords": [
"css",
"style",
"styles",
"pico",
"nano",
"lite",
"react",
"js",
"in-js",
"css-in-js",
"styled",
"decorator",
"component",
"styled-components",
"jsxstyle",
"rule",
"stylesheet"
]
}