-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "intro",
"version": "1.0.0",
"description": "Introduction to Enonic XP",
"devDependencies": {
"@enonic-types/global": "^7",
"@enonic-types/lib-cluster": "^7",
"@enonic-types/lib-content": "^7",
"@enonic-types/lib-context": "^7",
"@enonic-types/lib-export": "^7",
"@enonic-types/lib-portal": "^7",
"@enonic-types/lib-project": "^7",
"@enonic-types/lib-task": "^7",
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.1",
"browser-sync": "^3",
"concurrently": "^9",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-sass-plugin": "^2.16.1",
"eslint": "^9",
"eslint-plugin-jsx-a11y": "^6",
"glob": "^11.0.0",
"rimraf": "^6",
"sass": "^1.83.0",
"tsup": "^8",
"typescript-eslint": "^8.18.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "rimraf build",
"build": "concurrently -c auto -g --timings npm:build:*",
"build:sass": "npx sass src/main/resources/assets/styles:build/resources/main/assets/styles",
"build:server": "npx tsup -d build/resources/main",
"build:static": "node tsup/anyStaticFiles.js && npx tsup -d build/resources/main/static || exit 0",
"check": "concurrently -c auto -g --timings npm:lint npm:check:types",
"check:types": "concurrently -g -r --timings npm:check:types:*",
"check:types:server": "npx tsc --noEmit",
"check:types:static": "node tsup/anyStaticFiles.js && npx tsc --noEmit -p src/main/resources/static/tsconfig.json || exit 0",
"lint": "eslint --cache src/main/resources/**/*.ts",
"minify": "concurrently -c auto -g --timings 'npm:build:sass -- --style compressed' 'npm:build:server -- --minify' 'npm:build:static -- --minify'",
"watch": "concurrently -c auto npm:watch:*",
"watch:browserSync": "npx browser-sync start --files \"src/main/resources/**/*.html\" \"src/main/resources/**/*.xml\" \"build/resources/main\" --reload-delay 0 --port 3100 --no-snippet --watch",
"watch:sass": "npm run build:sass -- --watch",
"watch:server": "npm run build:server -- --watch",
"watch:static": "node tsup/anyStaticFiles.js && npm run build:static -- --watch || exit 0",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enonic/tutorial-intro.git"
},
"keywords": [
"enonic",
"xp",
"cms",
"introduction",
"tutorial"
],
"author": "Enonic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/enonic/tutorial-intro/issues"
},
"homepage": "https://github.com/enonic/tutorial-intro#readme",
"engines": {
"node": ">= 20.10.0",
"npm": ">= 10.2.3"
}
}