-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "@cr8iv/torch",
"version": "0.0.1",
"description": "MVP for design system using Stiches (CSS-in-JS) as the styling framework",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "cz",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "rm -rf dist",
"build": "node esbuild.build.js",
"dev": "yarn clean && node esbuild.dev.js & yarn ts-types --watch",
"prebuild": "yarn clean",
"postbuild": "yarn ts-types",
"ts-types": "tsc --emitDeclarationOnly --outDir dist"
},
"keywords": [],
"author": "George Bockari <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"babel-loader": "^8.2.5",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.14.38",
"esbuild-plugin-glob": "^1.1.2",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {
"@stitches/react": "^1.2.8"
}
}