-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
{
"name": "web-components-common",
"version": "1.0.0",
"description": "Web component common",
"main": "dist/web-components-common.js",
"scripts": {
"test": "jest --verbose --detectOpenHandles",
"build": "webpack --mode production",
"storybook": "start-storybook -p 9001",
"linter-fix": "eslint --fix . --ext .js,.jsx src",
"test:watch": "jest --watchAll --verbose",
"test:coverage": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"boilerplate",
"react",
"shared",
"components",
"components"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "6.1.18",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-knobs": "6.1.18",
"@storybook/addon-notes": "5.3.21",
"@storybook/addons": "6.1.18",
"@storybook/react": "6.1.18",
"@testing-library/dom": "7.30.3",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@testing-library/react-hooks": "5.0.3",
"@testing-library/user-event": "13.1.2",
"@tulipjs/eslint-config": "^1.1.1",
"babel-eslint": "10.0.1",
"babel-jest": "26.2.2",
"babel-loader": "^8.0.1",
"babel-plugin-macros": "2.6.1",
"babel-plugin-styled-components": "1.10.6",
"babel-plugin-transform-class-properties": "6.24.1",
"css-loader": "^1.0.0",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "4.0.0",
"jest": "26.2.2",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"dependencies": {
"@n8tb1t/use-scroll-position": "1.0.47",
"core-js": "3.2.1",
"lodash": "4.17.19",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-lazyload": "3.2.0",
"react-slick": "0.27.1",
"react-swipeable-views": "0.13.9",
"react-test-renderer": "^16.9.0",
"styled-components": "4.3.2"
},
"peerDependencies": {},
"jest": {
"setupFiles": [
"./src/test/setupTests.js"
]
}
}