-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.34 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
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
{
"name": "confiks",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"cli": "node dist/packages/cli/src/cli",
"precli:start": "npm run demo:cleanup",
"postcli:start": "npm run prepare",
"cli:start": "cd apps/demo && npm run start",
"cli:build": "nx run cli:build --prod",
"cli:build:watch": "nx run cli:build --watch",
"cli:lint": "nx lint cli",
"cli:test": "nx test cli",
"cli:test:watch": "nx test cli --watch",
"cli:performance": "npx oxlint -D correctness -D perf --deny-warnings ./packages/cli/src",
"cli:dependency-check": "cd apps/check-updates && npm run dependency-check",
"demo:cleanup": "git reset HEAD -- apps/demo && git restore apps/demo && git clean -fdx apps/demo",
"ls:performance": "npx oxlint -D correctness -D perf --deny-warnings --fix",
"ls:prettier": "prettier --write --ignore-unknown",
"ls:eslint": "eslint --quiet --fix",
"ci:dependency-check": "npx --yes npm-check-updates -e 2",
"prepare": "husky",
"prelink": "npm run cli:build",
"link": "cd dist/packages/cli && npm link"
},
"author": {
"name": "Konrad Stępień",
"email": "kord.stp@gmail.com"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nx/devkit": "19.4.3",
"@nx/eslint": "19.4.3",
"@nx/eslint-plugin": "19.4.3",
"@nx/jest": "19.4.3",
"@nx/js": "19.4.3",
"@nx/node": "19.4.3",
"@types/chalk-animation": "^1.6.3",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^15.2.2",
"nx": "19.4.3",
"oxlint": "^0.3.2",
"prettier": "^3.2.5",
"ts-jest": "^29.2.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"verdaccio": "^5.30.3"
},
"workspaces": [
"packages/*"
],
"nx": {
"includedScripts": []
}
}