-
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.27 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.27 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": "supernova",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run generate:svg-sprite && npm run scss && ng build supernova",
"watch": "ng build supernova --watch --configuration development",
"test": "ng test",
"test:screenshots": "./scripts/screenshot-tests.sh",
"test:screenshots:update": "./scripts/screenshot-tests.sh update",
"test:screenshots:clean": "./scripts/screenshot-tests.sh clean",
"test:screenshots:list": "./scripts/screenshot-tests.sh list",
"prepare": "husky install",
"publish": "./_publish.sh",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "ng run supernova:storybook",
"build-storybook": "ng run supernova:build-storybook",
"copy-sprite": "mkdir -p ./storybook-static/assets/icons/ && cp ./projects/supernova/assets/icons/sprite.svg ./storybook-static/assets/icons/",
"generate:svg-watch": "npm-watch",
"generate:svg-sprite": "svg2sprite ./projects/supernova/assets/icons/source-icons ./projects/supernova/assets/icons/sprite.svg --stripAttrs width --stripAttrs height --stripAttrs id --iconPrefix=sn-icon-",
"scss": "sass --style=compressed ./projects/supernova/assets/styles/index.scss ./projects/supernova/assets/styles/index.css"
},
"watch": {
"generate:svg-sprite": {
"patterns": [
"projects/supernova/assets/icons/source-icons"
],
"extensions": "svg",
"quiet": true
}
},
"lint-staged": {
"projects/**/*.ts": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"private": true,
"dependencies": {
"@angular/animations": "17.0.7",
"@angular/cdk": "17.0.4",
"@angular/common": "17.0.7",
"@angular/compiler": "17.0.7",
"@angular/core": "17.0.7",
"@angular/forms": "17.0.7",
"@angular/platform-browser": "17.0.7",
"@angular/platform-browser-dynamic": "17.0.7",
"@angular/router": "17.0.7",
"rxjs": "6.6.7",
"tslib": "2.4.0",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.7",
"@angular/cli": "17.0.7",
"@angular/compiler-cli": "17.0.7",
"@angular/elements": "17.0.7",
"@babel/core": "7.18.10",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@compodoc/compodoc": "^1.1.19",
"@playwright/test": "^1.55.0",
"@storybook/addon-actions": "^7.6.6",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-storysource": "^7.6.6",
"@storybook/angular": "^7.6.6",
"@types/jasmine": "3.8.2",
"@types/node": "18.19.3",
"@webcomponents/custom-elements": "1.4.3",
"babel-loader": "8.2.2",
"css-loader": "6.2.0",
"husky": "6.0.0",
"jasmine-core": "3.8.0",
"karma": "6.3.20",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"lint-staged": "11.0.0",
"ng-packagr": "17.0.3",
"npm-watch": "0.11.0",
"prettier": "2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "1.36.0",
"sass-loader": "12.1.0",
"storybook": "^7.6.6",
"style-loader": "3.2.1",
"svg2sprite-cli": "2.0.1",
"typescript": "5.2.2"
}
}