-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "starter-kit-essentials",
"version": "1.0.0",
"description": "ApostropheCMS Essential Starter Kit Site",
"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/",
"locales/*.json",
"public/uploads/",
"public/apos-frontend/*.js",
"data/"
],
"ext": "json, js, cjs, html"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/starter-kit-essentials"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"@apostrophecms/vite": "^1.0.0",
"apostrophe": "^4.9.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"
}
}