-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "starter-kit-pro-essentials",
"version": "2.0.0",
"description": "A starting point for Apostrophe Pro projects",
"private": true,
"type": "module",
"scripts": {
"build": "APOS_UPLOADFS_ASSETS=1 NODE_ENV=production bash -c 'node app @apostrophecms/asset:build'",
"//": "because nodemon insists on executing 'start' if it exists, we must distinguish production",
"serve": "APOS_UPLOADFS_ASSETS=1 NODE_ENV=production npm run start",
"start": "node app",
"dev": "nodemon",
"lint": "eslint . && stylelint '**/*.{scss,vue}'"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/starter-kit-pro-essentials"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Apostrophe Technologies",
"license": "UNLICENSED",
"dependencies": {
"@apostrophecms-pro/document-versions": "^2.3.1",
"@apostrophecms-pro/palette": "^4.3.2",
"@apostrophecms/vite": "^1.0.0",
"accordion-js": "^3.3.4",
"apostrophe": "^4.9.0",
"normalize.css": "^8.0.1",
"require-all": "^3.0.0",
"swiper": "^11.1.3"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.3.0",
"nodemon": "^3.1.1",
"postcss-scss": "^4.0.9",
"stylelint": "^16.6.1",
"stylelint-config-apostrophe": "^4.2.0"
}
}