forked from ultimatecourses/typescript-basics-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 949 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-basics-seed",
"version": "1.0.0",
"description": "Seed for TypeScript and Webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UltimateAngular/typescript-basics-seed.git"
},
"keywords": [
"typescript"
],
"devDependencies": {
"awesome-typescript-loader": "3.4.1",
"typescript": "2.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
},
"author": "Ultimate Angular",
"license": "MIT",
"bugs": {
"url": "https://github.com/UltimateAngular/typescript-basics-seed/issues"
},
"homepage": "https://github.com/UltimateAngular/typescript-basics-seed#readme",
"dependencies": {
"onchange": "^6.1.0",
"prettier": "^1.19.1"
}
}