-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.27 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": "webgl-2d-game-engine-ts",
"version": "0.0.1",
"description": "WebGl2 2D Game Engine using TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/kgish/webgl-2d-game-engine-ts.git"
},
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html --no-source-maps --public-url .",
"lint": "eslint . --ext .ts && stylelint \"**/*.scss\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kiffin Gish <[email protected]> (https://github.com/kgish)",
"license": "MIT",
"parcelCleanPaths": [
"dist"
],
"dependencies": {
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"@parcel/transformer-glsl": "^2.8.2",
"@parcel/transformer-sass": "^2.8.2",
"@types/webgl2": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-no-loops": "^0.3.0",
"parcel": "^2.8.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-reporter-static-files-copy": "^1.4.0",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.9.4"
}
}