-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.76 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "webpack-typescript-starter",
"version": "0.0.1",
"description": "A simple Webpack 4 starter with TypeScript transpilation",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "karma start karma.config.js"
},
"keywords": [
"webpack",
"webpack4",
"typescript"
],
"author": "Juri Strumpflohner",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/jasmine": "2.8.7",
"@types/node": "^7.0.0",
"awesome-typescript-loader": "5.2.0",
"css-loader": "^3.2.0",
"jasmine-core": "3.1.0",
"karma": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "3.0.0",
"postcss-loader": "^3.0.0",
"source-map-loader": "0.2.3",
"style-loader": "^1.0.0",
"sugarss": "^2.0.0",
"tslint": "5.17.0",
"tslint-loader": "3.6.0",
"typescript": "3.5.1",
"webpack": "4.12.0",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.1.4"
},
"dependencies": {
"rxjs": "^6.5.2",
"tailwindcss": "^1.1.2"
}
}