-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.1 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "atomic-prototype",
"description": "Angular 21 + PrimeNG 21 atomic design prototype — component hierarchy, design tokens, and testing patterns for small teams",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/roryford/atomic-prototype"
},
"homepage": "https://roryford.github.io/atomic-prototype/",
"bugs": {
"url": "https://github.com/roryford/atomic-prototype/issues"
},
"license": "MIT",
"keywords": [
"angular",
"primeng",
"atomic-design",
"design-system",
"storybook",
"design-tokens"
],
"engines": {
"node": ">=25.0.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"storybook": "ng run atomic-prototype:storybook",
"build-storybook": "ng run atomic-prototype:build-storybook",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"lint:styles": "stylelint 'src/**/*.{scss,css}'",
"format": "prettier --write \"src/**/*.{ts,html,scss,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,json}\"",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"screenshots": "playwright test e2e/screenshots.spec.ts",
"screenshots:components": "playwright test --config=playwright.storybook.config.ts",
"build:tokens": "npm run build --prefix tools/token-pipeline && cp tools/token-pipeline/output/preset.ts src/app/design-system/tokens/preset.ts",
"clean": "rimraf dist .angular storybook-static coverage",
"test:coverage": "ng test --watch=false --code-coverage"
},
"packageManager": "npm@11.11.0",
"dependencies": {
"@angular/animations": "^21.2.5",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"@primeng/themes": "^21.0.4",
"primeicons": "^7.0.0",
"primeng": "^21.1.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.2102.0",
"@angular-devkit/build-angular": "^21.2.0",
"@angular-devkit/core": "^21.2.0",
"@angular/build": "^21.2.3",
"@angular/cli": "^21.2.3",
"@angular/compiler-cli": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.0",
"@compodoc/compodoc": "^1.2.1",
"@storybook/addon-a11y": "^10.3.1",
"@storybook/addon-docs": "^10.3.1",
"@storybook/addon-onboarding": "^10.3.1",
"@storybook/angular": "^10.3.1",
"@storybook/test": "^8.6.15",
"jsdom": "^29.0.1",
"msw": "^2.12.14",
"prettier": "^3.8.1",
"rimraf": "^6.0.1",
"storybook": "^10.3.1",
"stylelint": "^17.5.0",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "~5.9.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"angular-eslint": "21.3.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"typescript-eslint": "8.56.1",
"vitest": "^4.1.0"
},
"msw": {
"workerDirectory": [
"src"
]
}
}