-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.81 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
{
"name": "dxp-component-library",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "concurrently --kill-others \"npm run cmp\" \"sleep 2 && node server\"",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest",
"build:server": "vite build --ssr src/entry-server.js",
"cmp": "dxp-next cmp dev-ui ./dxp/component-service",
"test": "vitest --coverage",
"lint:css": "stylelint \"**/*.scss\"",
"lint:css:fix": "stylelint \"**/*.scss\" --fix",
"prettier": "npx prettier .",
"prettier:fix": "npx prettier . --write",
"deploy": "npm run deploy:component --",
"deploy:component": "FEATURE_EDGE_COMPONENTS=true dxp-next cmp deploy ./dxp/component-service/$npm_config_name",
"vermgmt": "vermgmt",
"lint:js": "eslint dxp/component-service src/scripts",
"lint:js:fix": "eslint dxp/component-service src/scripts --fix"
},
"devDependencies": {
"@squiz/component-lib": "^1.78.1",
"@vitest/coverage-v8": "^2.1.5",
"compression": "^1.7.4",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"express": "^4.19.2",
"glob": "^11.0.0",
"happy-dom": "^15.11.7",
"kill-port": "^2.0.1",
"sass": "^1.79.5",
"sirv": "^2.0.4",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"vite": "^5.2.10",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-sass-glob-import": "^4.0.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@squiz/vermgmt": "^1.0.2",
"node-html-parser": "^6.1.13",
"stylelint-selector-bem-pattern": "^4.0.1",
"xss": "^1.0.15"
}
}