-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
35 lines (35 loc) · 931 Bytes
/
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
{
"name": "apostrophe-boilerplate",
"version": "2.0.0",
"description": "Minimal Apostrophe Boilerplate",
"main": "app.js",
"scripts": {
"start": "node app.js",
"build": "node app apostrophe:generation",
"docker-backup-content": "docker-compose exec apostrophe ./scripts/docker-backup-content",
"docker-restore-content": "docker-compose exec apostrophe ./scripts/docker-restore-content"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"apostrophe": "^2.116.1"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"lib/modules/*/public/js/*.js",
"locales/*.json",
"public/modules/**/*.less",
"public/modules/**/*.js",
"public/uploads",
"public/apos-minified/*.js",
"public/css/master-*.less",
"data"
],
"ext": "json, js, html, less"
}
}