-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 4.52 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "launchbadge-boilerplate",
"version": "1.0.0",
"description": "Base Project: Vue Composition API, JSX, Typescript, Babel, Snowpack",
"license": "MIT",
"main": "src/main.ts",
"dependencies": {
"@babel/preset-env": "^7.8.4",
"@vue/composition-api": "^0.4.0",
"axios": "^0.19.2",
"http-vue-loader": "^1.4.2",
"vue": "^2.6.11",
"vue-i18n": "^8.15.3",
"vue-router": "^3.1.5",
"vue-styled-components": "^1.4.14"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.21.0",
"@vue/babel-plugin-transform-vue-jsx": "^1.1.2",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/eslint-config-typescript": "^5.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-add-import-extension": "^1.3.0",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-type-constructors": "^0.4.3",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-regexp-constructors": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"babel-plugin-transform-remove-undefined": "^0.5.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-minify": "^0.5.1",
"babel-preset-vca-jsx": "^0.3.4",
"cpx-fixed": "^1.6.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.1",
"jest": "^25.1.0",
"lite-server": "^2.5.4",
"npm-run-all": "^4.1.5",
"snowpack": "^1.3.1",
"stylelint": "^13.2.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^3.8.2"
},
"scripts": {
"prepare": "snowpack",
"start": "npm-run-all --sequential build:clean watch:dependencies --parallel watch:js watch:copy:modules watch:copy:assets serve",
"lint:css": "stylelint 'src/**/*.tsx'",
"lint:js": "eslint --fix 'src/**/*.{ts,tsx}'",
"lint": "npm-run-all lint:js lint:css",
"build": "npm-run-all --sequential lint build:clean build:dependencies build:js build:move:modules build:copy:assets build:rename",
"build:clean": "node script/remove.js './build' && node script/remove.js './dist'",
"watch:dependencies": "snowpack --clean --include 'src/**/*.{ts,tsx,js,jsx}' 'test/**/*.{ts,tsx,js,jsx}'",
"build:dependencies": "snowpack --babel --optimize --clean --no-source-map --include 'src/**/*.{ts,tsx,js,jsx}' 'test/**/*.{ts,tsx,js,jsx}'",
"watch:js": "babel src --watch --out-dir build --extensions '.ts,.tsx,.js,.jsx'",
"build:js": "set BABEL_ENV=production&&babel src --out-dir build --extensions '.ts,.tsx,.js,.jsx'",
"watch:copy:assets": "cpx-fixed -w 'src/**/*.{html,css}' ./build",
"build:copy:assets": "cpx-fixed 'src/**/*.{html,css}' ./build",
"watch:copy:modules": "cpx-fixed -w 'web_modules/**' 'build/web_modules'",
"build:move:modules": "node script/rename.js 'web_modules' 'build/web_modules'",
"build:rename": "node script/rename.js 'build' 'dist'",
"serve": "lite-server"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 edge version"
]
}
}