-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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
{
"name": "@tedwin007/widgets",
"version": "0.1.7",
"license": "MIT",
"scripts": {
"lint:fix": "nx run widgets:lint --parallel --fix --reportUnusedDisableDirectives=error",
"pub": "npm run test && npm run lint:fix && npm run build && cd dist/widgets && npm pack && npm publish --access public",
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"dependencies": {
"ajv": "^6.12.6",
"tslib": "^2.3.0",
"@nx/jest": "^17.0.3"
},
"devDependencies": {
"@nx/eslint": "17.0.3",
"@nx/eslint-plugin": "17.0.3",
"@nx/jest": "^17.0.3",
"@nx/js": "17.0.3",
"@nx/vite": "17.0.3",
"@nx/workspace": "17.0.3",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/jest": "^29.5.7",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-c8": "~0.32.0",
"@vitest/ui": "~0.32.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"nx": "17.0.3",
"prettier": "^2.6.2",
"ts-jest": "^29.1.1",
"typescript": "~5.1.3",
"vite": "~4.3.9",
"vitest": "~0.32.0"
},
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts"
}