forked from italia/design-react-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.05 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
{
"name": "design-react-kit",
"version": "2.10.0",
"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",
"main": "dist/design-react-kit.cjs.js",
"module": "dist/design-react-kit.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/italia/design-react-kit.git"
},
"contributors": [
"Matteo Manchi <[email protected]>",
"Marco Liberati <[email protected]>",
"Paolo Mariotti <[email protected]>"
],
"bugs": {
"url": "https://github.com/italia/design-react-kit/issues"
},
"engines": {
"npm": "^5.0.0"
},
"scripts": {
"install-dependencies": "if [ ! -d node_modules ]; then npm install && npx npm-install-peers; fi",
"prebuild": "npm run install-dependencies",
"build": "rollup -c scripts/rollup.config.js",
"prestorybook": "npm run install-dependencies",
"storybook": "start-storybook -p 6006 -s ./static",
"storybook:build": "build-storybook -s ./static",
"storybook:deploy": "npx gh-pages -d storybook-static -m 'Update GitHub Pages [ci skip]'",
"test": "react-scripts test --env=jsdom",
"test:ci": "CI=true react-scripts test --env=jsdom",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@sambego/storybook-state": "^1.0.7",
"@storybook/addon-a11y": "^3.4.6",
"@storybook/addon-actions": "^3.4.2",
"@storybook/addon-console": "^1.0.0",
"@storybook/addon-info": "^3.4.2",
"@storybook/addon-knobs": "^3.4.2",
"@storybook/addon-options": "^3.4.2",
"@storybook/addon-storyshots": "^3.4.2",
"@storybook/addon-viewport": "4.0.0-alpha.1",
"@storybook/addons": "^3.4.2",
"@storybook/react": "^3.4.2",
"@storybook/storybook-deployer": "^2.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"bootstrap-italia": "0.10.3",
"classnames": "^2.2.5",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.11.0",
"husky": "1.1.2",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"react-scripts": "^1.1.4",
"react-scrollspy": "3.3.5",
"react-select": "^2.0.0",
"react-test-renderer": "^16.3.2",
"react-transition-group": "^2.3.1",
"reactstrap": "^6.4.0",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"storybook-readme": "^3.3.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"jest": {},
"dependencies": {}
}