-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.31 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pontx",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"pkg-ls": "lerna ls",
"batch": "node ./scripts/batch.js",
"test": "jest",
"build:platform": "node scripts/releasePlatform.js",
"inst": "npm run clean-lock && npm run clean && yarn install && lerna bootstrap",
"changelog": "node -r esm scripts/changelog.js",
"build:commonjs": "lerna exec --scope pontx-spec* --scope pontx-sdk-* --stream -- npm run build:commonjs",
"build:npm": "lerna exec --scope pontx-semix* --scope pontx-sdk-core --scope pontx-ui --stream -- npm run build",
"build:commonjs:watch": "concurrently 'tsc -p ./packages/pontx-spec/tsconfig.lib.json -w' 'tsc -p packages/pontx-spec-diff/tsconfig.commonjs.json -w'",
"build": "node scripts/buildNpm.js",
"start": "tsc --build -w",
"watch": "concurrently 'npm start' 'npm run build:commonjs:watch'",
"ui": "cd packages/pontx-ui && npm run start",
"clean": "rimraf ./node_modules && lerna clean --yes",
"lint": "prettier --write --parser typescript \"packages/**/*.ts\"",
"clean-lock": "rimraf packages/vscode-pontx/media/package-lock.json && node ./scripts/clean-lock.js || true",
"sync:package": "node scripts/syncRegistry.js",
"release:all": "npm run release:npm && npm run release:vscode",
"release:npm": "node scripts/releaseNpm.js",
"release:dry": "node scripts/release.js --dry",
"release:vscode": "sh scripts/releaseVscode.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pontjs/pontx.git"
},
"bugs": {
"url": "https://github.com/pontjs/pontx/issues"
},
"homepage": "https://github.com/pontjs/pontx#readme",
"gitHooks": {
"commit-msg": "node ./scripts/verifyCommit.js && node ./scripts/verifySafeCode.js",
"post-merge": "lerna bootstrap",
"pre-commit": "sh ./scripts/checkComment.sh && lint-staged"
},
"lint-staged": {
"packages/**/src/*.ts": [
"prettier --write",
"git add"
],
"plugins/**/src/*.ts": [
"prettier --write",
"git add"
]
},
"resolutions": {
"semix-core": "0.0.13",
"react": "^18.2.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^5.1.0",
"@types/http-server": "^0.10.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.45",
"acorn": "^8.8.2",
"commander": "^9.2.0",
"concurrently": "^7.2.2",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lerna": "^6.0.0",
"less": "^4.1.2",
"less-loader": "^11.1.0",
"lint-staged": "^12.4.1",
"lodash": "*",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"sass": "^1.69.5",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.4.1",
"typescript": "^5",
"vsce": "^2.15.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"yorkie": "^2.0.0"
},
"engineStrict": true,
"engines": {},
"workspaces": [
"packages/!(vscode-pontx-cp)/**",
"semix/**",
"plugins/**",
"examples/**",
"sdk/**"
],
"dependencies": {
"semix-rule-center": "^0.1.15"
}
}