-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "public-demo",
"version": "1.0.0",
"description": "Apostrophe Public Demo Site",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app",
"dev": "APOS_DEV=1 nodemon --delay 1000ms -x \"nodemon app.js\"",
"staging-deploy": "echo \"ℹ️ Clearing module links and installed modules to deploy.\" && rm package-lock.json && rm -r node_modules && npm i && sc-deploy staging",
"analyze-bundle": "APOS_BUNDLE_ANALYZER=1 node app @apostrophecms/asset:build"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@apostrophecms/import-export": "^2.4.1",
"@apostrophecms/seo": "^1.2.3",
"@apostrophecms/vite": "^1.0.0-beta.1",
"apostrophe": "^4.9.0"
},
"author": "Apostrophe Technologies, Inc",
"license": "MIT",
"nodemonConfig": {
"verbose": true,
"watch": [
"./app.js",
"./modules/**/*",
"./lib/**/*.js",
"./views/**/*.html",
"./src/**/*",
"./node_modules/apostrophe/modules/@apostrophecms/**/*"
],
"ignoreRoot": [
".git"
],
"ignore": [
"lib/modules/*/public/js/*.js",
"locales/*.json",
"public/uploads",
"public/apos-frontend",
"modules/asset/ui/public",
"data"
],
"ext": "json, js, html, scss, vue"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-apostrophe": "^3.4.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.12"
}
}