-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "mayan-calendar",
"description": "Mayan Calendar",
"version": "0.1.0",
"private": true,
"author": "Miguel Yax <[email protected]>",
"dependencies": {
"@vercel/analytics": "^1.0.0",
"bootstrap": "^5.2.3",
"classnames": "^2.3.2",
"nahuales": "^1.0.4",
"next": "^13.2.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"uid": "^2.0.2"
},
"scripts": {
"start": "next start",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"test": "react-scripts test",
"dev": "next dev",
"lint": "next lint",
"eject": "react-scripts eject",
"svg:optimize": "svgo -f ./src/icons -o ./.icons",
"svg:replace": "sed -i 's/bx:shape/bxShape/g; s/bx:d/bxD/g; s/xmlns:bx/xmlnsBx/g; s/#000/currentColor/g' .icons/* ",
"svg:components": "npx @svgr/cli ./.icons --out-dir src/components/icons --icon",
"icons": "rm -rf .icons && npm run svg:optimize && npm run svg:replace && npm run svg:components && rm -rf .icons"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-react": "^7.32.2"
},
"volta": {
"node": "18.15.0"
}
}