-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
55
56
57
58
{
"name": "glitter",
"version": "0.0.1",
"description": "Glitter game engine for web",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./config/webpack.config.ts --env.PROD",
"watch": "webpack --config ./config/webpack.config.ts --watch --env.DEV",
"start": "ts-node --project ./config/tsconfig.json ./config/dev_server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobiasbu/scintilla.git"
},
"keywords": [
"game",
"engine",
"javascript"
],
"author": "Tobias Ulrich",
"license": "MIT",
"devDependencies": {
"@types/copy-webpack-plugin": "^4.4.3",
"@types/express": "^4.16.1",
"@types/html-webpack-plugin": "^3.2.0",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.4.27",
"@types/webpack-dev-middleware": "^2.0.2",
"@types/webpack-hot-middleware": "^2.16.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-private": "^0.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^5.0.2",
"express": "^4.16.4",
"html-webpack-include-assets-plugin": "^1.0.7",
"html-webpack-plugin": "^3.2.0",
"normalize.css": "^8.0.0",
"open": "^6.1.0",
"ts-node": "^8.0.3",
"typescript": "^3.4.2",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.2",
"webpack-hot-middleware": "^2.24.3"
},
"bugs": {
"url": "https://github.com/tobiasbu/scintilla/issues"
},
"homepage": "https://github.com/tobiasbu/scintilla#readme",
"directories": {
"test": "test"
}
}