-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.33 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
{
"name": "leozera-ui",
"version": "0.5.0",
"description": "My experimental React UI library",
"repository": "git@github.com:leonardofaria/leozera-ui.git",
"author": "Leonardo Faria <leonardofaria@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "yarn storybook",
"storybook": "start-storybook -p 6006 --ci",
"storybook:build": "build-storybook -c .storybook -o docs",
"deploy": "yarn storybook:build",
"test": "jest",
"test:ci": "jest && codecov",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"lint:js": "eslint lib",
"lint:css": "sass-lint -v -q 'lib/**/*.scss' --max-warnings 0",
"build:lib": "yarn build:js && yarn build:webpack && yarn build:css && yarn build:copy-files",
"build:webpack": "NODE_ENV=production webpack -p",
"build:js": "NODE_ENV=production babel lib/components -d dist --ignore '**/*.spec.js,**/*.stories.js'",
"build:css": "node scripts/buildSass.js",
"build:copy-files": "node scripts/copyBuildFiles.js",
"publish": "yarn build:lib && npm publish dist",
"release": "yarn build:lib && semantic-release"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"classnames": "^2.2.6",
"eslint-config-leozera": "1.0.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@babel/runtime": "^7.10.3",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-centered": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-options": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"codecov": "^3.6.1",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"resolve-url-loader": "^3.1.1",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.2",
"semantic-release": "^17.1.0",
"style-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"lint-staged": {
"*.js": "eslint",
"*.scss": "sass-lint -v -q --max-warnings 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}