-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "gtd-framework",
"version": "1.0.0",
"description": "Typescript framework to rule them all",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"compile": "tsc --project .",
"compile-watch": "tsc --project . -w",
"pack-styles": "java -jar bin/lit-v1.0b2.jar",
"pack-client": "rollup temp/src/start.js --file out/app.js --format iife",
"dist" : "npm run compile && npm run pack-styles && npm run pack-client && npm run prod",
"dev" : "node bin/environment.js dev",
"prod" : "node bin/environment.js prod",
"serve" : "python -m http.server 5500"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akrck02/GTD_Framework.git"
},
"keywords": [
"Typescript",
"single-page-app"
],
"author": "akrck02",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/akrck02/GTD_Framework/issues"
},
"homepage": "https://github.com/akrck02/GTD_Framework#readme",
"devDependencies": {
"rollup": "^2.70.1",
"typescript": "^4.5.2",
"dotenv": "^16.0.1"
},
"dependencies": {}
}