-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2 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
{
"name": "boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:prod": "npm run decrypt-production-env && npm run dev",
"dev:staging": "npm run decrypt-staging-env && npm run dev",
"build": "next build",
"build:prod": "npm run decrypt-production-env && next build && npm run build-sitemap",
"build:staging": "npm run decrypt-staging-env && next build && npm run build-sitemap",
"start": "next start",
"lint": "next lint",
"encrypt-production-env": "cm-env encrypt prod",
"decrypt-production-env": "cm-env decrypt prod",
"encrypt-staging-env": "cm-env encrypt staging",
"decrypt-staging-env": "cm-env decrypt staging",
"encrypt-dev-env": "cm-env encrypt dev",
"decrypt-dev-env": "cm-env decrypt dev",
"setup-encryption": "npm run encrypt-production-env && npm run encrypt-staging-env && npm run encrypt-dev-env",
"create-encryption-keys": "touch .env.local && cm-env setup prod && cm-env setup staging && cm-env setup dev && npm run setup-encryption",
"test-all": "npm run lint && npm run build:staging --debug",
"build-sitemap": "next-sitemap",
"prepare": "husky",
"auto-generate-graphql-types": "graphql-codegen"
},
"dependencies": {
"@ant-design/icons": "^5.6.0",
"@ant-design/nextjs-registry": "^1.0.2",
"@apollo/client": "^3.12.8",
"antd": "^5.23.3",
"graphql": "^16.10.0",
"next": "15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@commutatus/cm-env": "^1.1.0",
"@eslint/eslintrc": "^3",
"@graphql-codegen/cli": "^5.0.4",
"@graphql-codegen/typescript": "^4.1.3",
"@graphql-codegen/typescript-operations": "^4.4.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^16.4.7",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"husky": "^9.1.7",
"next-sitemap": "^4.2.3",
"postcss": "^8",
"sass": "^1.83.4",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}