-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 937 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 937 Bytes
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
{
"name": "polygone.art",
"version": "1.0.0",
"description": "",
"main": "build/poly-app.js",
"type": "module",
"scripts": {
"clean": "rm -rf build && rm -rf bundle",
"lint": "eslint src --fix",
"build": "yarn clean && yarn lint && tsc && rollup -c && rm -rf build && mv bundle build",
"dev": "yarn clean && yarn lint && tsc -w"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-html": "^7.1.0",
"io-gui": "1.4.0-rc5",
"rollup": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"dependencies": {
"archiver": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"got": "^11.8.2",
"morgan": "^1.10.0",
"sharp": "^0.28.3"
}
}