forked from easypanel-io/templates
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "templates",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "run-p watch-templates dev:next",
"dev:next": "next dev",
"build": "npm run build-templates && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"watch-templates": "nodemon",
"build-templates": "ts-node -r tsconfig-paths/register ./scripts/build-templates.ts",
"build-docs": "ts-node -r tsconfig-paths/register ./scripts/build-docs.ts",
"check-for-updates": "ts-node -r tsconfig-paths/register ./scripts/check-for-updates.ts",
"move-docs": "rm -rf ../website/docs/05-templates/* && cp -r ./docs/* ../website/docs/05-templates/"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@rjsf/chakra-ui": "^4.1.1",
"@rjsf/core": "^4.1.1",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"framer-motion": "^6",
"glob": "^8.0.3",
"json-schema-to-ts": "^2.3.0",
"json-schema-to-typescript": "^11.0.2",
"lodash": "^4.17.21",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"yaml": "^2.1.1",
"zod": "^3.14.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"eslint": "8.14.0",
"eslint-config-next": "12.1.6",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "4.6.4"
}
}