forked from enonic/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.52 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.52 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
80
81
82
83
{
"name": "item-starter",
"version": "0.0.1",
"devDependencies": {
"@enonic-types/core": "^7.16.1",
"@enonic-types/global": "^7.16.1",
"@enonic-types/lib-admin": "^7.16.1",
"@enonic-types/lib-auth": "^7.16.1",
"@enonic-types/lib-cluster": "^7.16.1",
"@enonic-types/lib-common": "^7.16.1",
"@enonic-types/lib-content": "^7.16.1",
"@enonic-types/lib-context": "^7.16.1",
"@enonic-types/lib-event": "^7.16.1",
"@enonic-types/lib-export": "^7.16.1",
"@enonic-types/lib-i18n": "^7.16.1",
"@enonic-types/lib-io": "^7.16.1",
"@enonic-types/lib-mail": "^7.16.1",
"@enonic-types/lib-node": "^7.16.1",
"@enonic-types/lib-portal": "^7.16.1",
"@enonic-types/lib-project": "^7.16.1",
"@enonic-types/lib-repo": "^7.16.1",
"@enonic-types/lib-scheduler": "^7.16.1",
"@enonic-types/lib-task": "^7.16.1",
"@enonic-types/lib-value": "^7.16.1",
"@enonic-types/lib-websocket": "^7.16.1",
"@eslint/js": "^9.39.1",
"@swc/core": "^1.15.3",
"@types/node": "^24.10.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"@changesets/cli": "^2.29.5",
"@item-enonic-types/lib-freemarker": "^3.0.0-beta.1",
"@item-enonic-types/lib-http-client": "^3.2.2",
"@item-enonic-types/lib-menu": "^4.2.1",
"@item-enonic-types/lib-time": "^1.2.1",
"@item-enonic-types/lib-turbo-streams": "^1.1.2",
"@itemconsulting/preset-enonic-xp": "^0.3.0",
"@itemconsulting/xp-storybook-utils": "^0.1.0",
"@storybook/addon-a11y": "^9.1.5",
"@storybook/addon-docs": "^9.1.5",
"@storybook/addon-links": "^9.1.5",
"@storybook/addon-styling-webpack": "^2.0.0",
"@storybook/addon-webpack5-compiler-swc": "^4.0.1",
"@storybook/server-webpack5": "^9.1.5",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.0",
"postcss-nesting": "^13.0.2",
"postcss-normalize": "^13.0.1",
"postcss-reporter": "^7.1.0",
"postcss-url": "^10.1.3",
"prettier": "^3.6.2",
"storybook": "^9.1.5"
},
"private": true,
"scripts": {
"build": "concurrently -c auto -g --timings npm:build:*",
"build:assets": "node tsup/build.js src/main/resources/assets build/resources/main/assets",
"build:server": "node tsup/build.js src/main/resources build/resources/main",
"build:postcss": "npx postcss src/main/resources/assets/styles/main.css -m -d build/resources/main/assets --base src/main/resources/assets --ext min.css",
"check": "concurrently -c auto -g --timings npm:check:types npm:lint",
"check:types": "concurrently --kill-others-on-fail -g -r --timings npm:check:types:*",
"check:types:assets": "node tsup/check.js src/main/resources/assets",
"check:types:server": "node tsup/check.js src/main/resources src/main/resources/assets",
"cov": "jest --no-cache --coverage",
"lint": "eslint --cache \"src/main/resources/**/*.ts\" --ignore-pattern \"**/*.stories.ts\"",
"test": "jest --no-cache",
"storybook": "storybook dev -p 6006",
"release": "npm run build",
"versioning": "npx changeset version && npm i --package-lock-only && NEW_VERSION=$(node -p \"require('./package.json').version\") && sed -i \"s/version.*/version = ${NEW_VERSION}/\" gradle.properties"
}
}