-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "@sflpro/dresscode",
"version": "1.80.8",
"description": "UI Framework developer at SFL",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**/**.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o ./docs",
"clean": "rimraf lib/*",
"build": "npm run clean && babel src --out-dir lib --copy-files",
"prepare": "npm run build"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sflpro/dresscode.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sflpro/dresscode/issues"
},
"homepage": "https://github.com/sflpro/dresscode#readme",
"dependencies": {
"classnames": "^2.2.6",
"formik": "^2.0.7",
"lodash.throttle": "^4.1.1",
"react": "^16.8.3",
"react-day-picker": "^7.3.0",
"react-dom": "^16.8.3",
"resize-observer-polyfill": "^1.5.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@sambego/storybook-state": "^1.3.4",
"@semantic-release/git": "^7.0.16",
"@storybook/addon-actions": "^5.2.3",
"@storybook/addon-knobs": "^5.2.3",
"@storybook/addon-viewport": "^5.2.3",
"@storybook/react": "^5.2.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"inline-loader": "^0.1.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.1",
"postcss-preset-env": "^6.5.0",
"prop-types": "15.7.2",
"semantic-release": "^15.13.18",
"storybook-addon-smart-knobs": "^4.1.2",
"style-loader": "^0.23.1"
},
"browserslist": [
"last 1 version",
"not dead",
"> 1%"
],
"sideEffects": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}