-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "webpack-typescript-starter",
"version": "0.0.1",
"description": "A simple Webpack starter with TypeScript transpilation",
"main": "index.js",
"dependencies": {
"@types/createjs": "0.0.29",
"createjs": "^1.0.1",
"html-webpack-externals-plugin": "^3.8.0"
},
"scripts": {
"serve": "webpack-dev-server --open --port 8000 --inline --progress --profile --colors --watch --content-base dist/",
"build": "webpack --watch",
"build:prod": "cross-env NODE_ENV=production webpack",
"webpack": "webpack --inline --progress --profile --colors"
},
"keywords": [
"webpack",
"typescript"
],
"author": "Ivanov Max",
"license": "ISC",
"devDependencies": {
"@types/node": "7.0.0",
"awesome-typescript-loader": "^3.0.0",
"cross-env": "^5.1.1",
"html-webpack-plugin": "^2.0.0",
"source-map-loader": "^0.1.6",
"tslint": "^4.3.1",
"tslint-loader": "^3.3.0",
"typescript": "^2.1.5",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.11.5"
}
}