-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "example-project",
"version": "0.1.0",
"main": "dist/index.ts",
"dependencies": {
"@robatbobat/mini-ecs": "^0.1.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"rollup": "^2.45.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-copy-watch": "^0.0.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"scripts": {
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"dev": "rollup --config dev.config.js --watch",
"build": "rollup --config prod.config.js"
},
"author": {
"name": "Neyman Aleksandr",
"email": "neyman.sashka@gmail.com"
},
"license": "MIT",
"description": "mini-ecs example project"
}