-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 888 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
{
"name": "typescript-starter",
"version": "0.0.1",
"description": "A Typescript Starter repo",
"main": "src/index.ts",
"scripts": {
"compile:dev": "tsc -w",
"compile": "tsc",
"webpack:dev": "webpack-dev-server --mode development",
"webpack": "webpack",
"start": "./dist/index.js"
},
"pre-commit": [],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.0",
"copy-webpack-plugin": "^4.5.2",
"pre-commit": "^1.2.2",
"standard-version": "^4.4.0",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"lodash": "^4.17.10"
}
}