-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.19 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
{
"name": "ts_rollup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && rollup -c",
"build-release": "tsc && NODE_ENV=production rollup -c",
"clean": "rimraf build",
"serve": "python_venv/bin/python src/backend/start_dev.py build/dev serve",
"serve2": "python_venv/bin/python src/backend/start_dev.py build/dev serve2",
"serve-playground": "python_venv/bin/python src/backend/start_dev.py build/dev playground",
"serve-release": "python_venv/bin/python src/backend/start_dev.py build/release serve2",
"postinstall": "patch-package && python3.9 -m venv python_venv && python_venv/bin/pip install --upgrade pip && python_venv/bin/pip install -r requirements.txt"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.51.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.2"
},
"dependencies": {
"@codemirror/basic-setup": "^0.18.2",
"patch-package": "^6.4.7"
}
}