This repository has been archived by the owner on Oct 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
123 lines (123 loc) · 3.47 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
{
"name": "zapify-ui",
"version": "1.0.5",
"private": false,
"author": "piyush97 <[email protected]>",
"main": "lib/index/index.js",
"husky": {
"hooks": {
"precommit": "NODE_ENV=production lint-staged"
}
},
"keywords": [
"react",
"javascript",
"js",
"git",
"github",
"hooks",
"components",
"react-ui",
"zapify",
"zapify-ui"
],
"scripts": {
"build": "webpack --mode production",
"test": "jest",
"build-css": "node-sass-chokidar src/components/ -o src/components/",
"dev": "webpack --mode development --env.dist=false",
"dev:dist": "webpack --mode development",
"lint": "eslint src/**; exit 0",
"build-storybook": "build-storybook -c src/.storybook",
"deploy-storybook": "storybook-to-ghpages",
"lint:watch": "esw -w lib/**",
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"prepare": "npm run build-css && npm run build",
"prettier": "prettier src/**/*.js src/components/**/*.js --write",
"start": "npm-run-all -p watch-css storybook",
"storybook": "start-storybook -p 9001 -c src/.storybook",
"watch-css": "npm run build-css && node-sass-chokidar src/components/ -o src/components/ --watch --recursive"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "identity-obj-proxy"
}
},
"storybook-deployer": {
"gitUsername": "piyush97",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook [skip ci]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zapify-ui/zapify"
},
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-info": "^5.1.11",
"@storybook/addon-links": "5.1.11",
"@storybook/addon-storysource": "^5.1.11",
"@storybook/react": "5.1.11",
"@storybook/storybook-deployer": "^2.8.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.6",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.5.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-watch": "^6.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"husky": "3.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"sass-loader": "^7.3.1",
"storybook-addon-jsx": "^7.1.5",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"pre-commit": [
"lint-fix",
"prettier"
],
"sideEffects": false
}