-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.05 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
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
{
"name": "project-transform-storybook",
"description": "Project Transform Storybook",
"author": "",
"version": "0.0.1",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/theThought/Project-Transform"
},
"homepage": "https://theThought.github.io/Project-Transform",
"scripts": {
"reset": "rm -rf node_modules/ && npm install",
"static-assets-rename": "node ./scripts/static-assets-rename",
"static-assets-move": "node ./scripts/static-assets-move",
"static-assets-move-localserver": "node ./scripts/static-assets-move-localserve",
"prestart": "rm -rf .parcel-cache",
"start": "npm install && cross-env NODE_ENV=development && npm run start:parcel",
"start:parcel": "parcel watch src/javascript/index.ts --dist-dir public --hmr-port 1234 --target app --cache-dir .parcel-cache",
"prebuild": "rm -rf .parcel-cache && rm -rf public/build",
"build": "npm install && cross-env NODE_ENV=production && npm run build:parcel",
"build:parcel": "parcel build index.html --dist-dir public/build --cache-dir .parcel-cache",
"postbuild": "npm run static-assets-rename && npm run static-assets-move",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"publish-storybook": "npm run build && npm run build-storybook",
"prepare": "cd .. && husky install ui/.husky",
"prelocalserver": "npm run build && npm run static-assets-move-localserver",
"localserver": "npx http-server _example-pages/"
},
"targets": {
"app": {}
},
"browserslist": [
"defaults",
"not dead"
],
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@etchteam/storybook-addon-status": "^4.2.4",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/html": "^8.4.7",
"@storybook/html-vite": "^8.4.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cheerio": "^1.0.0-rc.11",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^10.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"parcel": "^2.12.0",
"postcss": "^8.4.18",
"prettier": "^3.3.3",
"remark-gfm": "^4.0.0",
"storybook": "^8.4.7",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "^4.8.4"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"src/**/*.css": [
"stylelint",
"prettier --write"
]
}
}