-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·86 lines (86 loc) · 2.63 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
85
86
{
"name": "tonkatsu-amp",
"version": "0.0.3",
"description": "Tonkatsu can help you to transform HTML tag to ⚡AMP tag",
"main": "src/index.ts",
"deploy": "./dist",
"scripts": {
"copy:package": "cp package.json dist/package.json",
"build:storybook": "build-storybook",
"build:def": "tsc -p tsconfig.definition.json",
"build:lib": "rollup --config rollup.config.js",
"build": "npm-run-all build:lib build:def copy:package --parallel",
"lint": "eslint --ext .tsx,.ts src",
"publish:dist": "yarn build && cd dist && npm publish",
"release": "version-pong",
"storybook": "start-storybook -p 6006",
"test": "jest",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wongnai/tonkatsu-amp.git"
},
"author": "LINE MAN Wongnai",
"license": "MIT",
"bugs": {
"url": "https://github.com/wongnai/tonkatsu-amp/issues"
},
"homepage": "https://github.com/wongnai/tonkatsu-amp#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.5",
"@rollup/plugin-typescript": "8.2.5",
"@types/cache-manager": "3.4.2",
"@types/image-size": "0.8.0",
"@types/ioredis": "4.27.5",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.175",
"@types/parse5": "6.0.1",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/eslint-plugin-tslint": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"app-root-path": "3.0.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "14.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unused-imports": "1.1.5",
"husky": "7.0.2",
"jest": "27.2.4",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"rollup": "2.58.0",
"rollup-plugin-cleaner": "1.0.0",
"rollup-plugin-includepaths": "0.2.4",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.5.2",
"standard-version": "9.3.1",
"ts-jest": "27.0.5",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-etc": "1.13.10",
"typescript": "4.4.3"
},
"dependencies": {
"cache-manager": "3.4.4",
"cache-manager-ioredis": "2.1.0",
"image-size": "1.0.0",
"lodash": "4.17.21",
"parse5": "6.0.1"
},
"version-pong": {
"method": "yarn publish:dist"
}
}