-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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": "well-cache",
"version": "1.0.2",
"description": "",
"types": "es/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./es && ./node_modules/.bin/tsc",
"watch": "rm -rf ./es && ./node_modules/.bin/tsc --watch",
"compile": "rm -rf ./dist && gulp compile",
"ex_dev": "NODE_ENV=development webpack-dev-server --open --config ./examples/cache/webpack.config.js",
"ex_pub": "NODE_ENV=production webpack-dev-server --open --config ./examples/cache/webpack.config.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.7.1",
"@types/source-map": "0.5.2",
"@types/uglify-js": "3.0.4",
"@types/webpack": "4.41.0",
"@types/webpack-sources": "0.1.5",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-typescript": "5.0.1",
"handlebars-loader": "1.7.1",
"ts-lint": "4.5.1",
"ts-loader": "6.2.1",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.5.5",
"@babel/runtime": "7.7.2"
}
}