-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.47 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
81
82
83
84
{
"name": "build.sh",
"version": "2.0.0",
"description": "🔨 run and visualize the build process",
"repository": {
"type": "https",
"url": "https://github.com/gabrielcsapo/build.sh.git"
},
"bugs": {
"url": "https://github.com/gabrielcsapo/build.sh/issues"
},
"homepage": "https://www.gabrielcsapo.com/build.sh",
"main": "./dist/lib/index.js",
"scripts": {
"lint": "prettier --write .",
"build": "tsc && esbuild ./bin/build.mjs --bundle --platform=node --outfile=dist/bin/build.cjs --external:pnpapi --external:@swc/core --format=cjs --inject:./scripts/import-meta-url.js --define:import.meta.url=import_meta_url",
"test": "vitest lib/*.test.js --coverage",
"pack": "pkg dist/bin/build.cjs -c package.json -o packed/build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o website/static/storybook"
},
"bin": {
"build": "./bin/build.mjs"
},
"author": "Gabriel J. Csapo <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"ascii-pipeline": "^0.2.1",
"babel-loader": "^9.1.0",
"commander": "^9.4.1",
"css-loader": "^6.7.2",
"html-webpack-plugin": "^5.5.0",
"js-yaml": "^4.1.0",
"log-update": "^5.0.1",
"open": "^8.4.0",
"psychic.css": "0.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitest/coverage-c8": "^0.25.3",
"esbuild": "^0.15.16",
"pkg": "^5.8.0",
"prettier": "^2.8.0",
"shelljs": "^0.8.5",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
},
"pkg": {
"scripts": [
"dist/bin/*"
],
"assets": [
"dist/**/*",
"node_modules/psychic.css/dist/psychic.min.css"
],
"targets": [
"node18-macos-x64",
"node18-alpine-x64",
"node18-linux-x64",
"node18-win-x64"
]
},
"volta": {
"node": "18.12.1"
}
}