-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
{
"name": "@withvoid/melting-pot",
"version": "1.6.0",
"description": "A react utility library",
"main": "dist/melting-pot.cjs.js",
"module": "dist/melting-pot.esm.js",
"scripts": {
"dev": "parcel dev/index.html",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"docz:dev": "docz dev",
"docz:build": "node_modules/.bin/docz build",
"lint:debug": "eslint --debug src/",
"lint:write": "eslint --debug src/ --fix",
"lint:stage": "eslint --fix",
"prettier": "prettier --write src/**/*.js docs/**/* dev/**/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withvoid/melting-pot.git"
},
"keywords": [
"react",
"utility",
"react-hooks"
],
"author": "Adeel Imran <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/withvoid/melting-pot/issues"
},
"homepage": "https://github.com/withvoid/melting-pot#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.3",
"docz": "2.3.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"eslint-plugin-react-hooks": "^1.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"parcel-bundler": "1.12.4",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.0.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:stage",
"git add"
]
}
}