-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.35 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"description": "Item starter",
"version": "1.0.0",
"homepage": "https://github.com/ItemConsulting/starter-item",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ItemConsulting/starter-item"
},
"scripts": {
"clean": "rimraf build",
"build": "concurrently -c auto -g --timings npm:build:*",
"minify": "concurrently -c auto -g --timings 'npm:build:browser -- --minify' npm:build:sass 'npm:build:server -- --minify' 'npm:build:static -- --minify'",
"build:asset": "npx tsup -d build/resources/main/assets",
"build:postcss": "npx postcss src/main/resources/assets/styles/main.css -o src/main/resources/assets/styles/bundle.css && mv src/main/resources/assets/styles/bundle.css build/resources/main/assets/styles/bundle.css",
"build:server": "npx tsup -d build/resources/main",
"check": "concurrently -c auto -g --timings npm:lint npm:check:types",
"check:types": "concurrently -g -r --timings npm:check:types:*",
"check:types:asset": "npx tsc --noEmit -p src/main/resources/assets/tsconfig.json",
"check:types:server": "npx tsc --noEmit",
"lint": "eslint --cache 'src/main/resources/**/*.ts'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@enonic-types/core": "^7",
"@enonic-types/global": "^7",
"@enonic-types/lib-auth": "^7",
"@enonic-types/lib-common": "^7",
"@enonic-types/lib-content": "^7",
"@enonic-types/lib-context": "^7",
"@enonic-types/lib-event": "^7",
"@enonic-types/lib-i18n": "^7",
"@enonic-types/lib-io": "^7",
"@enonic-types/lib-node": "^7",
"@enonic-types/lib-portal": "^7",
"@enonic-types/lib-repo": "^7",
"@enonic-types/lib-scheduler": "^7",
"@enonic-types/lib-task": "^7",
"@enonic-types/lib-value": "^7",
"@enonic-types/lib-websocket": "^7",
"@enonic/esbuild-plugin-copy-with-hash": "^0.2.0",
"@enonic/tsup-plugin-manifest": "^0.0.1",
"@item-enonic-types/global": "^7.13.1",
"@item-enonic-types/lib-freemarker": "^2.0.2",
"@item-enonic-types/lib-http-client": "^3.2.1",
"@item-enonic-types/lib-menu": "^4.2.1",
"@item-enonic-types/lib-time": "^1.0.4",
"@item-enonic-types/lib-turbo-streams": "^1.0.5",
"@itemconsulting/preset-enonic-xp": "^0.0.3",
"@itemconsulting/xp-storybook-utils": "^0.0.5",
"@storybook/addon-a11y": "^8.2.7",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.7",
"@storybook/server": "^8.2.7",
"@storybook/server-webpack5": "^8.2.7",
"@storybook/test": "^8.2.7",
"@swc/core": "^1.7.5",
"autoprefixer": "^10.4.19",
"concurrently": "^8",
"cssnano": "^7.0.4",
"esbuild-plugin-globals": "^0.2.0",
"eslint": "^9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"postcss": "^8.4.40",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nesting": "^12.1.5",
"postcss-normalize": "^10.0.1",
"postcss-reporter": "^7.1.0",
"postcss-url": "^10.1.3",
"prettier": "^3.3.3",
"q-i": "^2",
"rimraf": "^6",
"storybook": "^8.2.7",
"tsup": "^8",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}