-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "contentful-migration-ui",
"type": "module",
"description": "Migrate content and models between spaces",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"copy:content": "ts-node src/script/copy_content.ts",
"copy:model": "ts-node src/script/copy_model.ts",
"copy:locales": "ts-node src/script/copy_locales.ts",
"deps": "ts-node src/script/view_deps.ts",
"build": "qwik build",
"build.client": "vite build",
"build.types": "tsc --incremental --noEmit",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr"
},
"devDependencies": {
"@builder.io/qwik": "^0.101.0",
"@builder.io/qwik-city": "^0.101.0",
"@types/eslint": "8.21.3",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"eslint-plugin-qwik": "0.24.0",
"prettier": "^2.8.6",
"typescript": "5.0.2",
"undici": "5.21.0",
"vite": "4.2.1",
"vite-tsconfig-paths": "3.5.0"
},
"dependencies": {
"contentful": "^9.3.5",
"contentful-management": "^10.31.3",
"contentful-migration": "^4.12.9",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1"
}
}