-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
{
"name": "@apmg/amat",
"authors": "[Geoff Hankerson [email protected], Kim Thompson [email protected], Jason Phan [email protected]]",
"version": "1.1.1",
"private": false,
"main": "dist/bundle.js",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "[email protected]/APMG/amat-react.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage",
"eslint": "eslint .",
"prettier": "prettier --check '**/**.js'",
"prettier:fix": "prettier --check '**/**.js' --write",
"clean": "rm -rf node_modules dist package-lock.json yarn.lock"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@apmg/enceladus": "^1.0.1",
"@apmg/mimas": "^2.0",
"@nprapps/sidechain": "^1.0.13",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-html-parser": "^2.0.2",
"rollup": "^4.22.5",
"rollup-plugin-babel": "^4.3.3",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-utils": ">=1.4.1",
"jest": "^24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-prop-type-error": "^1.1.0",
"next": "14.2.10",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-json": "^4.0.0",
"serialize-javascript": ">=3.1.0"
},
"resolutions": {
"@babel/traverse": "7.23.2",
"semver": "7.6.3",
"braces": "3.0.3",
"ws": "6.2.3",
"rollup": "4.22.4",
"tough-cookie": "4.1.3",
"micromatch": "4.0.8",
"word-wrap": "1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier",
"pre-push": "npm run eslint && npm run prettier"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}