forked from italia/design-react-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.28 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
{
"name": "design-react-kit",
"version": "3.1.3",
"description": "Componenti React per Bootstrap 4",
"author": "Presidenza del Consiglio dei Ministri",
"homepage": "https://github.com/italia/design-react-kit#README",
"license": "BSD-3-Clause",
"module": "dist/design-react-kit",
"typings": "dist/design-react-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/italia/design-react-kit.git"
},
"contributors": [
"Gianluca Esposito",
"Matteo Manchi",
"Paolo Mariotti",
"Marco Liberati",
"Francesco Zaia",
"Sanyam Dogra",
"Silvio Relli"
],
"bugs": {
"url": "https://github.com/italia/design-react-kit/issues"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@sambego/storybook-state": "^1.3.3",
"@storybook/addon-a11y": "^5.2.5",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-console": "^1.2.0",
"@storybook/addon-info": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addon-notes": "^5.2.5",
"@storybook/addon-storyshots": "^5.2.5",
"@storybook/addon-storysource": "^5.2.5",
"@storybook/addon-viewport": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"bootstrap-italia": "1.3.9",
"classnames": "^2.2.6",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.4",
"husky": "^3.0.9",
"react-scripts": "^3.1.2",
"react-test-renderer": "^16.10.1",
"react-to-typescript-definitions": "^2.0.0",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svg": "^2.0.0",
"run-script-os": "^1.0.7",
"typeface-lora": "^0.0.72",
"typeface-roboto-mono": "^0.0.75",
"typeface-titillium-web": "^0.0.72"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"scripts": {
"install-dependencies": "yarn install --peers",
"prebuild": "yarn install-dependencies",
"build": "rollup -c scripts/rollup.config.js",
"prestorybook": "yarn install-dependencies",
"storybook:build": "build-storybook -c .storybook -s ./static",
"storybook:serve": "start-storybook -p 9001 -c .storybook -s ./static",
"storybook:deploy": "npx gh-pages -d storybook-static -m 'Update GitHub Pages [ci skip]'",
"lint": "eslint src/ stories/",
"lint:fix": "eslint --fix src/",
"test": "export SKIP_PREFLIGHT_CHECK=true && react-scripts test --env=jsdom",
"test:ci": "CI=true react-scripts test --env=jsdom",
"start": "yarn run storybook:serve",
"typescript:dts": "node scripts/dts.js"
},
"husky": {
"hooks": {
"pre-push": "yarn run lint"
}
},
"dependencies": {
"prop-types": "^15.7.2",
"react-scrollspy": "^3.3.5",
"react-select": "^3.0.8",
"react-stickup": "^1.11.0",
"react-toastify": "^5.5.0",
"react-transition-group": "^2.3.1",
"reactstrap": "^8.0.0",
"webfontloader": "^1.6.28"
}
}