-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "simple-boot-front",
"version": "1.0.119",
"main": "SimpleApplication.js",
"license": "MIT",
"description": "front end SPA frameworks",
"keywords": [
"front",
"spa",
"SPA",
"module",
"front-end",
"framwork",
"node"
],
"author": "visualkhh <[email protected]> (https://github.com/visualkhh)",
"contributors": [
"sewoo <[email protected]> (https://github.com/sewoo)",
"SeoDH <[email protected]> (https://github.com/SeoDH)",
"tkyung (https://github.com/tkyungDev)",
"Hoil-Gang (https://github.com/khl1154)",
"hwangsero (https://github.com/hwangsero)"
],
"homepage": "https://github.com/visualkhh/simple-boot-front",
"bugs": {
"url": "https://github.com/visualkhh/simple-boot-front",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/visualkhh/simple-boot-front"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"workspaces": [
"libs/dom-render/dist",
"libs/simple-boot-core/dist",
"../dom-render/dist",
"../simple-boot-core/dist"
],
"scripts": {
"build": "rm -rf dist && tsc --outDir dist --declarationDir dist",
"npm:build": "rm -rf dist && mkdir dist && cp package-prod.json dist/package.json && cp README.MD dist && tsc --outDir dist --declarationDir dist",
"npm:publish": "npm run npm:build && npm publish ./dist",
"tsc": "tsc",
"tsc:watch": "rm -rf ./dist && mkdir dist && cp package.json dist && tsc --watch --outDir dist --declarationDir dist --sourceMap true",
"build:ts:watch": "rm -rf ./dist && mkdir dist && cp package-prod.json dist/package.json && tsc --watch --outDir dist --declarationDir dist --sourceMap true",
"test": "jest --detectOpenHandles --forceExit"
},
"alias": {},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"typescript": "^4.4.3"
},
"dependencies": {
"dom-render": "^1.0.97",
"simple-boot-core": "^1.0.42"
}
}