forked from apostrophecms/starter-kit-marketing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "a3-starter-kit-marketing",
"version": "1.0.0",
"description": "Marketing starter kit for ApostropheCMS",
"type": "module",
"scripts": {
"start": "node app",
"dev": "nodemon",
"build": "bash ./scripts/release-tasks",
"serve": "NODE_ENV=production node app",
"release": "npm install && npm run build && node app @apostrophecms/migration:migrate",
"storybook": "bash ./scripts/build-storybook-assets.sh && storybook dev -p 6006",
"build-storybook": "bash ./scripts/build-storybook-assets.sh && storybook build"
},
"nodemonConfig": {
"delay": 1000,
"verbose": true,
"watch": [
"./app.js",
"./apos.vite.config.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": "git@github.com:apostrophecms/starter-kit-marketing.git"
},
"author": "Apostrophe Technologies",
"license": "MIT",
"dependencies": {
"@apostrophecms/form": "^1.5.0",
"@apostrophecms/open-graph": "^1.2.2",
"@apostrophecms/seo": "^1.3.0",
"@apostrophecms/sitemap": "^1.1.0",
"@apostrophecms/vite": "^1.1.0",
"aos": "^2.3.4",
"apostrophe": "^4.18.0",
"dotenv": "^16.0.3",
"node-geocoder": "^4.2.0",
"normalize.css": "^8.0.1",
"ol": "^7.3.0",
"photoswipe": "^5.3.7",
"rfs": "^10.0.0",
"swiper": "^9.2.3"
},
"devDependencies": {
"@storybook/addon-docs": "^9.0.12",
"@storybook/html-vite": "^9.0.12",
"autoprefixer": "^10.4.20",
"eslint": "^9.29.0",
"eslint-config-apostrophe": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-storybook": "^9.0.12",
"memfs": "^4.17.2",
"nodemon": "^3.1.10",
"path-browserify": "^1.0.1",
"storybook": "^9.0.12"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}