-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "apos-app",
"version": "1.0.0",
"description": "Apostrophe 3 Essential Starter Kit Site",
"main": "app.js",
"scripts": {
"start": "node app",
"dev": "nodemon",
"build": "bash ./scripts/heroku-release-tasks",
"assets": "bash ./scripts/heroku-release-tasks",
"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-essentials"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@johmun/vue-tags-input": "^2.1.0",
"apostrophe": "^3.61.1",
"dotenv": "^16.4.5",
"flat": "^5.0.2",
"joi": "^17.11.0",
"jsesc": "^3.0.2",
"mathjs": "^12.2.1",
"normalize.css": "^8.0.1",
"openai": "^4.100.0",
"rhea": "^3.0.2",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"transliteration": "^2.3.5",
"uuid": "^9.0.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.0.0",
"nodemon": "^3.0.1"
}
}