-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.77 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": "starter-kit-assembly-essentials",
"version": "2.0.0",
"description": "A boilerplate for multisite content-management in Apostrophe",
"type": "module",
"private": true,
"scripts": {
"build": "APOS_UPLOADFS_ASSETS=1 NODE_ENV=production bash -c 'node app @apostrophecms/asset:build --site=dashboard && ./scripts/for-each-theme @apostrophecms/asset:build'",
"//": "because nodemon insists on executing 'start' if it exists, we must distinguish production",
"production-start": "APOS_UPLOADFS_ASSETS=1 NODE_ENV=production npm run start",
"start": "node app",
"dev": "nodemon",
"test": "eslint . && stylelint 'dashboard/**/*.scss' && stylelint 'sites/**/*.scss'"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/starter-kit-assembly-essentials"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Apostrophe Technologies",
"license": "UNLICENSED",
"dependencies": {
"@apostrophecms-pro/document-versions": "^2.3.1",
"@apostrophecms-pro/multisite": "^4.3.0",
"@apostrophecms-pro/multisite-dashboard": "^1.4.0",
"@apostrophecms-pro/palette": "^4.3.2",
"@apostrophecms/vite": "^1.0.0",
"@opentelemetry/auto-instrumentations-node": "^0.46.1",
"@opentelemetry/exporter-jaeger": "^1.26.0",
"@opentelemetry/sdk-node": "^0.51.1",
"@opentelemetry/semantic-conventions": "^1.27.0",
"@tiptap/extension-text-style": "^2.8.0",
"accordion-js": "^3.3.4",
"apostrophe": "^4.9.0",
"glob": "^10.4.5",
"normalize.css": "^8.0.1",
"swiper": "^11.1.3"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.3.0",
"nodemon": "^3.1.7",
"stylelint": "^16.6.1",
"stylelint-config-apostrophe": "^4.2.0"
}
}