forked from italia/design-react-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.22 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
{
"name": "italia-design-react",
"version": "1.0.0",
"description": "Italia UI Toolkit",
"main": "lib/index.js",
"scripts": {
"test": "jest --watch",
"test:ci": "jest",
"build": "webpack --config webpack.prod.config.js",
"lint": "eslint --fix src/",
"storybook": "start-storybook -p 8010 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o .out",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/italia/design-react.git"
},
"author": {
"name": "RomaJS",
"url": "http://romajs.org/"
},
"contributors": [
"Matteo Manchi <[email protected]>",
"Marco Liberati <[email protected]>",
"Paolo Mariotti <[email protected]>"
],
"license": "LGPLv2.1",
"bugs": {
"url": "https://github.com/italia/design-react/issues"
},
"homepage": "https://github.com/italia/design-react#README",
"devDependencies": {
"@improntaadvance/eslint-config": "^0.8.2",
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-console": "^1.0.0",
"@storybook/addon-info": "^3.2.9",
"@storybook/addon-storyshots": "^3.2.12",
"@storybook/react": "^3.2.8",
"@storybook/storybook-deployer": "^2.0.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-airbnb": "^2.4.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"jest": "^21.2.1",
"prettier": "^1.7.4",
"raw-loader": "^0.5.1",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"classnames": "^2.2.5",
"design-web-toolkit": "github:italia/design-web-toolkit",
"jquery": "^3.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"tablesaw": "^3.0.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}