-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.67 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
{
"name": "systemjs-ts-es6-vue",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/viT-1/systemjs-ts-es6-vue.git"
},
"description": "An examlple how to bundle typescript app to ES5 with SystemJS for IE11 and ES6 modules for other browsers",
"keywords": [
"typescript",
"nobundle",
"systemjs",
"es6 modules",
"json modules",
"importmap",
"vue",
"vue 3.0",
"vue-class-component",
"vue-property-decorator",
"vuex",
"direct-vuex",
"typescript vuex",
"typed vuex",
"jest",
"unittest"
],
"eslintIgnore": [
"dist",
"distnode",
"node_modules"
],
"scripts": {
"clean": "rm -rf ./dist",
"lintJsons": "eslint --ext json ./src",
"lint": "tsc --project ./src/tsconfig.dev.json --noEmit && eslint --ext ts,js,json ./src",
"predeploy": "npm run lint && npm run clean && gulp predeploy",
"deploy": "ttsc --project ./dist/tsconfig.html-esm.json && ttsc --project ./src/tsconfig.json",
"postdeploy": "gulp postdeploy && npm run wwwdeploy",
"predeploy.dev": "npm run clean && gulp predeploy.dev",
"deploy.dev": "ttsc --project ./src/tsconfig.dev.json",
"postdeploy.dev": "gulp postdeploy.dev && npm run wwwdeploy",
"clean.node": "rm -rf ./distnode",
"predeploy.node": "npm run clean.node",
"deploy.node": "ttsc --project ./src/tsconfig.node.json",
"postdeploy.node": "node ./distnode/main.node.js",
"wwwdeploy": "tsc --project ./express.node/tsconfig.json",
"www": "node -r esm ./dist/express.node/express.node.js",
"www.dev": "node -r esm ./dist/express.node/express.node.js --dev",
"test": "jest --no-cache --maxWorkers=1 --silent -c ./src/jest.config.js",
"clj": "jest --clearCache"
},
"dependencies": {
"debounce-decorator-ts": "1.0.4",
"direct-vuex": "0.12.1",
"es-module-shims": "0.10.1",
"express": "4.17.1",
"systemjs": "6.9.0",
"vue": "2.6.13",
"vue-class-component": "7.2.6",
"vue-multiselect": "2.1.6",
"vue-property-decorator": "9.0.2",
"vuex": "3.6.2"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/jest": "26.0.23",
"@types/node": "15.6.2",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"@vue/test-utils": "1.2.0",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"app-root-path": "3.0.0",
"del": "6.0.0",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-json": "3.0.0",
"esm": "3.2.25",
"gulp": "4.0.2",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"gulp-html-to-js": "0.0.7",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.3",
"gulp-replace-task": "^2.0.1",
"gulp-uglify-es": "2.0.0",
"html-loader-jest": "0.2.1",
"jest": "27.0.3",
"jest-fetch-mock": "3.0.3",
"merge-stream": "2.0.0",
"ts-jest": "27.0.2",
"ts-node": "10.0.0",
"tsconfig-paths-jest": "0.0.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "2.2.3",
"vue-template-compiler": "2.6.13"
}
}