-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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": "starter-kit-astro",
"version": "1.0.0",
"description": "Apostrophe starter kit project for Astro integration",
"main": "app.js",
"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",
"./modules/**/*",
"./lib/**/*.js",
"./views/**/*.html"
],
"ignoreRoot": [
".git"
],
"ignore": [
"**/ui/apos/",
"**/ui/src/",
"**ui/public/",
"locales/*.json",
"public/uploads/",
"public/apos-frontend/*.js",
"data/"
],
"ext": "json, js, html, scss, vue"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/starter-kit-astro"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"@apostrophecms/blog": "^1.0.4",
"@apostrophecms/vite": "^1.0.0",
"apostrophe": "^4.11.0",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.0.0",
"nodemon": "^3.0.1"
}
}