-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.11 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
116
117
{
"name": "@apmg/enceladus",
"description": "A React component that takes an array of Image objects from our American Public Media's Images API and turns it into a slideshow, with some options",
"version": "1.0.1",
"main": "dist/bundle.js",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/APMG/apm-enceladus"
},
"keywords": [
"image",
"react",
"apm",
"media"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --watch",
"test:ci": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"eslint": "eslint .",
"prettier": "prettier --check '**/**.js'",
"prettier:fix": "prettier --check '**/**.js' --write",
"clean": "rm -rf node_modules dist package-lock.json && npm cache verify"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint && yarn prettier",
"pre-push": "yarn eslint && yarn prettier"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"peerDependencies": {
"@apmg/mimas": "^2.0.0",
"next": "^12",
"react": "^17",
"react-dom": "^17"
},
"devDependencies": {
"@apmg/mimas": "^2.0.0",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-options": "^5.1.9",
"@storybook/react": "^5.1.9",
"audit-ci": "^6.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-prop-type-error": "^1.1.0",
"mini-css-extract-plugin": "^0.6.0",
"next": "^12.3",
"prettier": "1.16.4",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.0.1",
"react-testing-library": "^5.8.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.3.3",
"sass": "^1.54.0",
"sass-loader": "^7.1.0",
"storybook-react-router": "^1.0.5",
"storybook-readme": "^5.0.5",
"uuid": "^3.3.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.14",
"@emotion/core": "^10.0.16",
"@emotion/styled": "^10.0.15",
"classnames": "^2.2.6",
"focus-trap-react": "^6.0.0",
"prop-types": "^15.7.2",
"react-pose": "^4.0.8"
},
"resolutions": {
"ejs": ">=3.1.7",
"glob-parent": ">=5.1.2",
"immer": ">=9.0.6",
"loader-utils": ">=2.0.4",
"marked": ">=4.0.10",
"minimatch": ">=3.0.5",
"node-fetch": ">=2.6.7",
"nth-check": ">=2.0.1",
"prismjs": ">=1.21.0",
"shell-quote": ">=1.7.3",
"terser": ">=4.8.1"
}
}