-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 976 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
{
"name": "tswp-training",
"version": "1.0.0",
"description": "TypeScript/Webpack training",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"build": "webpack --config webpack.config.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"keywords": [],
"author": "Chris Ramakers",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.1",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"jest": "^25.3.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}