-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.73 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
{
"name": "next-movie-components",
"version": "0.7.3",
"description": "React components for Next Movie website",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"lint": "eslint .",
"test": "jest && npm run build-storybook",
"update-snapshot": "jest --updateSnapshot",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o docs",
"transpile": "rm -rf dist && mkdir dist && babel ./src -d dist --ignore ./src/__snapshots__,./src/__stories__,./src/__tests__,./src/storybook.test.js",
"prepublishOnly": "npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannysindra/next-movie-components.git"
},
"keywords": [
"react",
"nextmovie",
"component"
],
"author": "danny.sindra",
"license": "ISC",
"bugs": {
"url": "https://github.com/dannysindra/next-movie-components/issues"
},
"homepage": "https://github.com/dannysindra/next-movie-components#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.7.0",
"@storybook/addon-a11y": "^5.2.1",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-backgrounds": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addon-storyshots": "^5.2.1",
"@storybook/addon-viewport": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"@testing-library/react": "^9.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.0",
"babel-plugin-macros": "^2.6.1",
"baseui": "^9.52.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"jest-transform-css": "^2.0.0",
"lint-staged": "^9.4.1",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.10.2",
"require-context.macro": "^1.2.2",
"styletron-engine-atomic": "^1.4.4",
"styletron-react": "^5.2.5"
},
"peerDependencies": {
"react": ">= 16.11.0",
"react-dom": ">= 16.11.0",
"styletron-react": "^5.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"jquery": "^3.4.1",
"react-markdown": "^4.2.2"
}
}