-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "@somesass/project",
"version": "1.0.0",
"private": true,
"description": "Workspace management for the somesass monorepo",
"workspaces": [
"packages/*",
"vscode-extension"
],
"scripts": {
"prepare": "husky",
"postinstall": "patch-package",
"build": "nx run-many -t build",
"preclean": "nx reset",
"clean": "nx run-many -t clean",
"postclean": "shx rm -rf node_modules",
"coverage": "nx run-many -t coverage",
"dev": "echo Watching workspace for changes... && nx watch --all -- nx run \\$NX_PROJECT_NAME:build",
"lint": "eslint \"**/*.ts\" --cache",
"lint-staged": "lint-staged",
"package": "nx package some-sass",
"release:dryrun": "nx release --dry-run",
"release": "nx release --skip-publish",
"start:web": "nx start:web some-sass",
"test": "cross-env CI=true nx run-many -t test",
"test:all": "npm run test && npm run test:e2e && npm run test:web",
"test:e2e": "nx test:e2e some-sass",
"test:web": "nx test:web some-sass"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.14.0",
"@nx/js": "20.0.12",
"@nx/web": "20.0.12",
"@nx/webpack": "20.0.12",
"@rspack/cli": "1.1.0",
"@rspack/core": "1.1.0",
"@swc-node/register": "1.10.9",
"@swc/core": "1.9.1",
"@swc/helpers": "0.5.13",
"@types/eslint__js": "8.42.3",
"@types/node": "22.9.0",
"@types/vscode": "1.86.0",
"@vscode/vsce": "3.2.1",
"cross-env": "7.0.3",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"nx": "20.0.12",
"ovsx": "0.10.0",
"patch-package": "8.0.0",
"prettier": "3.3.3",
"shx": "0.3.4",
"ts-loader": "9.5.1",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vitest": "2.1.4"
}
}