This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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": "@ticketswap/comets",
"version": "0.0.0-development",
"description": "Icon library for the TicketSwap product",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"commit": "git-cz",
"prebuild": "yarn clean",
"dev": "node esbuild.config.js --dev",
"build": "tsc",
"postbuild": "node esbuild.config.js",
"clean": "rimraf -r dist",
"storybook": "start-storybook -p 6006",
"prepublishOnly": "yarn build",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|scss|ts|tsx|md|mdx|graphql)\"",
"format": "yarn prettier -- --write",
"validate": "yarn test && yarn prettier -- --list-different",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TicketSwap/comets.git"
},
"keywords": [
"react",
"typescript",
"ticketswap"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TicketSwap/comets/issues"
},
"homepage": "https://github.com/TicketSwap/comets#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/react": "^6.2.9",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.23",
"@types/react-dom": "^17.0.9",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.13.4",
"esbuild-node-externals": "^1.3.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^26.5.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {}
}