-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "vite-demo",
"version": "1.0.0",
"description": "ApostropheCMS Vite Demo",
"type": "module",
"scripts": {
"start": "node app",
"dev": "nodemon",
"build": "NODE_ENV=production node app @apostrophecms/asset:build",
"serve": "NODE_ENV=production node app",
"release": "npm install && npm run build && node app @apostrophecms/migration:migrate"
},
"nodemonConfig": {
"delay": 1000,
"verbose": true,
"watch": [
"./app.js",
"./apos.vite.config.js",
"./modules/**/*",
"./lib/**/*.js",
"./views/**/*.html"
],
"ignoreRoot": [
".git"
],
"ignore": [
"**/ui/",
"locales/*.json",
"public/uploads/",
"public/apos-frontend/*.js",
"data/"
],
"ext": "json, js, html, scss, vue"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/vite-demo"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"@apostrophecms/vite": "github:apostrophecms/vite",
"apostrophe": "github:apostrophecms/apostrophe",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"svelte": "^5.1.3",
"vue": "^3.5.12"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.0.0",
"nodemon": "^3.0.1",
"normalize.css": "^8.0.1",
"tailwindcss": "^3.4.14"
}
}