-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "preact-jss-hook",
"version": "2.1.2",
"description": "JSS integration with Preact",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"dev": "webpack-dev-server --progress --open --config webpack.config.development.js",
"lint": "eslint src && eslint examples",
"clean": "rimraf lib",
"compile": "microbundle -i src -o lib/index.js -f cjs --no-sourcemap",
"build": "yarn run clean && yarn run compile",
"prepublishOnly": "yarn run lint && yarn run build"
},
"keywords": [
"preact",
"jss",
"css",
"css in js",
"theme"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/fakundo/preact-jss-hook"
},
"author": "Roman Samoylov (https://github.com/fakundo)",
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jss": "^10.1.1",
"jss-preset-default": "^10.1.1",
"microbundle": "^0.11.0",
"preact": "^10.4.4",
"rimraf": "^3.0.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"jss": "^10.0.0",
"preact": "^10.0.0"
}
}