-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
71 lines (71 loc) · 2.37 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
{
"scripts": {
"build": "CODE_VERSION=\"$(git rev-parse HEAD)\" webpack --mode production",
"build-storybook": "build-storybook -o dist/storybook",
"start": "CODE_VERSION=\"$(git rev-parse HEAD)\" webpack serve --mode development",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint '**/*.{css,vue}'",
"lint:js": "eslint '**/*.{js,ts,vue}' --max-warnings 0",
"fix": "npm run fix:css && npm run fix:js",
"fix:css": "stylelint --fix '**/*.{css,vue}'",
"fix:js": "eslint --fix '**/*.{js,ts,vue}'",
"test": "npm run test:e2e",
"test:e2e": "playwright test",
"storybook": "start-storybook -p 6006"
},
"browserslist": [
">1% in JP",
"not IE 11"
],
"dependencies": {
"color-convert": "^2.0.1",
"file-saver": "^2.0.5",
"filenamify": "^6.0.0",
"gifenc": "mattdesl/gifenc#64842fca317b112a8590f8fef2bf3825da8f6fe3",
"jszip": "^3.7.1",
"mitt": "^3.0.1",
"rollbar": "^2.24.0",
"vue": "^3.1.5"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@primer/css": "20.x",
"@primer/stylelint-config": "12.x",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/builder-webpack5": "^6.3.4",
"@storybook/manager-webpack5": "^6.3.5",
"@storybook/vue3": "^6.3.5",
"@types/color-convert": "^2.0.0",
"@types/css-font-loading-module": "^0.0.7",
"@types/file-saver": "^2.0.3",
"@types/google.analytics": "^0.0.42",
"@types/gtag.js": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.33.0",
"@vue/compiler-sfc": "^3.1.4",
"canvas": "^2.10.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-compat": "^3.11.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^7.16.0",
"postcss": "8.x",
"postcss-html": "1.x",
"ssim.js": "^3.5.0",
"stylelint": "14.x",
"stylelint-config-html": "1.x",
"stylelint-no-unsupported-browser-features": "6.x",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"vue-loader": "^17.0.1",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.46.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.x",
"webpack-glsl-minify": "^1.4.2"
}
}