-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "@jlbelanger/crudnick",
"version": "1.0.1",
"description": "React components for a CRUD admin backend CMS using JSON:API.",
"license": "GPL-3.0-only",
"author": {
"name": "Jenny Belanger",
"email": "mail@jennybelanger.com",
"url": "https://www.jennybelanger.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/jlbelanger/crudnick.git"
},
"scripts": {
"build": "(([ -d dist ] && rm -r dist/) || true) && microbundle-crl --no-compress --format modern,cjs --css-modules false --jsxFragment React.Fragment",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "node_modules/.bin/stylelint 'src/scss/**/*.scss'",
"lint:js": "node_modules/.bin/eslint . --ext .js",
"start": "npx update-browserslist-db@latest && microbundle-crl watch --no-compress --format modern,cjs --css-modules false --jsxFragment React.Fragment"
},
"dependencies": {
"@jlbelanger/formosa": "jlbelanger/formosa#1061f96c17116e84f4f781e84e72d712d8623b26",
"get-value": "^3.0.1",
"js-cookie": "^3.0.5",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-transform-unicode-property-regex": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@stylistic/stylelint-plugin": "^3.1.1",
"@svgr/webpack": "^8.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"microbundle-crl": "^0.13.11",
"postcss": "^8.4.49",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.10.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-router-dom": "~5.3.4"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"browserslist": [
"defaults",
"iOS >= 12"
]
}