-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.37 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "typescript-webpack-template",
"version": "1.0.2",
"description": "A typescript webpack template for hot reload script development.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "cross-env NODE_ENV=development webpack --config configs/webpack.config.dev.js --watch --colors",
"prod": "cross-env NODE_ENV=production webpack --config configs/webpack.config.prod.js --colors && node dist/index.js",
"build": "cross-env NODE_ENV=production webpack --config configs/webpack.config.prod.js --colors",
"postinstall": "echo \u001b[36m It works!\u001b[0m Thanks for using our template! Check out\u001b[35m http://teckdigital.de && echo \u001b[36m Run 'yarn dev' and open 'index.ts' to see your changes hot reloading. \u001b[0m"
},
"author": "TECKdigital",
"repository": {
"type": "git",
"url": "https://github.com/teck-digital/typescript-webpack-template"
},
"contributors": [
{
"name": "Timo Peters",
"email": "peters@teck-digital.de"
},
{
"name": "Yannik Hahn",
"email": "hahn@teck-digital.de",
"url": "https://h4hn.de"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.11.5",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.12.1",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-webpack-plugin": "^2.4.1",
"file-loader": "^6.1.0",
"prettier": "^2.2.1",
"run-node-webpack-plugin": "^1.3.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.4",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {},
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x",
"yarn": ">=0.21.3"
}
}