-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "soccer-jersey",
"version": "1.0.14",
"description": "Generate soccer jerseys in SVG format",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc -p .",
"build:umd": "webpack --mode=production",
"dev:umd": "webpack serve --mode=development --watch-content-base --progress --open=true",
"build:deploy": "npm version patch && npm run build-storybook && npm run build:umd && npm run build",
"doc": "typedoc src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"soccer",
"shirt",
"svg",
"fpl"
],
"author": "nadchif (https://github.com/nadchif)",
"repository": {
"type": "git",
"url": "https://github.com/nadchif/soccer-jersey.git"
},
"license": "MIT",
"files": [
"lib",
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/blocks": "^7.0.17",
"@storybook/react": "^7.0.17",
"@storybook/react-webpack5": "^7.0.17",
"@storybook/testing-library": "^0.0.14-next.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.17",
"ts-loader": "^8.0.17",
"typedoc": "^0.24.7",
"typescript": "4.6.4",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.15.0"
},
"dependencies": {
"@svgdotjs/svg.js": "github:svgdotjs/svg.js",
"abab": "^2.0.5"
}
}