-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "love-typescript",
"version": "0.0.2",
"description": "Entity component system (ECS) for TypeScript",
"main": "love.js",
"scripts": {
"dev": "npm run build:css && webpack-dev-server --config webpack.dev.js --host 127.0.0.1 --port 3000 --display-modules --content-base dev --inline --hot --mode development --env.ENVIRONMENT=dev",
"release": "webpack --config webpack.release.js --mode production --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "postcss src/css/tailwind.css -o src/css/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PluginIO/love-typescript.git"
},
"keywords": [
"entity",
"component",
"system",
"ecs",
"typescript",
"ts"
],
"author": "Gary Paluk",
"license": "MIT",
"bugs": {
"url": "https://github.com/PluginIO/love-typescript/issues"
},
"homepage": "https://github.com/PluginIO/love-typescript#readme",
"devDependencies": {
"eslint": "^5.16.0",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@mdi/font": "^5.3.45",
"@mdi/js": "^5.3.45",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.152",
"@typescript-eslint/parser": "^1.9.0",
"autoprefixer": "^9.8.0",
"axios": "^0.19.2",
"copy-webpack-plugin": "^5.0.3",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"lodash": "^4.17.21",
"postcss-cli": "^7.1.1",
"prettier-eslint": "^8.8.2",
"tailwindcss": "^1.4.6",
"uglify-js": "^3.5.13"
}
}