-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "a3-boilerplate",
"version": "1.0.0",
"description": "Apostrophe 3 Boilerplate Site",
"main": "app.js",
"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": [
"locales/*.json",
"public/uploads",
"public/apos-frontend/*.js",
"data"
],
"ext": "json, js, html, scss, vue"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/a3-boilerplate"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"apostrophe": "^3.6.0",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-apostrophe": "^3.4.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.7"
}
}