-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "typescript-skeleton",
"version": "1.0.0",
"description": "Typescript skeleton for rapid typescript development",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "none_yet"
},
"author": "boboben1",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.1.2",
"core-js": "^2.5.7",
"module-alias": "^2.1.0",
"regenerator-runtime": "^0.12.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.12.0",
"babel-plugin-module-resolver": "^3.1.1",
"codelyzer": "^4.5.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-plumber": "^1.2.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0-alpha.3",
"jshint": "^2.9.6",
"merge-stream": "^1.0.1",
"rollup-plugin-commonjs": "^9.2.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
}
}