-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"author": {
"name": "Silas B. Domingos",
"email": "hello@balmante.eti.br",
"url": "https://balmante.eti.br"
},
"name": "@singleware/frontend",
"description": "Singleware frontend project package.",
"license": "MIT",
"version": "1.2.11",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"frontend application",
"empty frontend project"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/frontend"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@singleware/application": "^1.2.10",
"@singleware/class": "^1.1.19",
"@singleware/jsx": "^1.0.32",
"@singleware/path": "^1.0.7"
},
"devDependencies": {
"@singleware/backend": "^1.2.26",
"@singleware/bundler": "^1.0.29",
"@types/node": "^11.15.16",
"prettier": "^1.19.1",
"typescript": "^3.9.5"
},
"prettier": {
"printWidth": 125,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"start": "node ./release/examples/server.js",
"build": "npm run clean && npm run make-source && npm run make-examples",
"clean": "rm -rf ./release",
"make-source": "npx tsc -p ./source && npm run update-source",
"make-examples": "npx tsc -p ./examples && node ./release/examples/bundler.js",
"update-source": "npm run update-root && npm run update-services",
"update-root": "cp -Rf ./source/*.d.ts ./release/types",
"update-services": "cp -Rf ./source/services/*.d.ts ./release/types/services"
}
}