-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "nstarter",
"private": true,
"workspaces": [
"cli",
"core",
"packages/*",
"tools/*",
"development/*",
"ci/toolbox/*"
],
"scripts": {
"build": "npx nx run-many -t build",
"eslint": "npx nx run-many -t eslint",
"eslint:html": "npx nx run-many -t eslint:html",
"test": "npx nx run-many -t test",
"pack": "mkdirp ./build && npm pack --workspaces --pack-destination ./build",
"upload": "npx nx run-many -t upload",
"clean": "npx nx run-many -t clean && rimraf .nx/cache && rmraf ./build"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.8",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-nstarter": "^4.0.1",
"mkdirp": "^3.0.1",
"mocha": "^10.7.0",
"nstarter-tsconfig": "*",
"nx": "19.5.6",
"nyc": "^17.0.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"volta": {
"node": "20.16.0",
"npm": "10.8.1"
}
}