-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 998 Bytes
/
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
{
"name": "typescript-todo",
"version": "1.0.0",
"main": "./src/index.ts",
"dependencies": {
"typescript": "^3.8.3",
"vue": "^2.6.11"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^4.3.0",
"ts-loader": "^7.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.config",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lamorttu/typescript-todo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lamorttu/typescript-todo/issues"
},
"homepage": "https://github.com/lamorttu/typescript-todo#readme",
"keywords": [],
"description": ""
}