-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "tetris",
"version": "1.0.0",
"description": "dumb tetris",
"main": "index.js",
"dependencies": {
"@odoo/o-spreadsheet": "^17.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"eslint": "^6.8.0",
"live-server": "^1.2.2",
"npm": "^8.19.2",
"run": "^1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"rollup": "^2.38.5",
"rollup-plugin-minify": "^1.0.3",
"serve": "^14.0.1",
"typescript": "^5.1.6",
"@types/node": "^13.13.23"
},
"prettier": {
"printWidth": 100,
"xmlWhitespaceSensitivity": "ignore",
"bracketSameLine": true,
"xmlSelfClosingSpace": false
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "live-server --open=demo --watch=demo,dist/spreadsheet_tetris.js",
"dev": "npm-run-all bundle --parallel serve watch",
"bundle": "rollup -c -m",
"watch": "npm run bundle -- --watch",
"build:js": "tsc --module es6 --incremental",
"build:bundleJs": "rollup -c -m"
},
"author": "",
"license": "MIT"
}