-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "domwires",
"version": "0.9.129",
"description": "Flexible and extensible MVC framework",
"repository": {
"type": "git",
"url": "https://github.com/CrazyFlasher/domwires-ts"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"@types/node": "18.7.12",
"inversify": "6.0.1",
"inversify-inject-decorators": "3.1.0",
"reflect-metadata": "0.1.13",
"browser-or-node": "2.1.1",
"dotenv": "16.0.3"
},
"devDependencies": {
"esbuild": "0.15.18",
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"chai": "4.3.6",
"copyfiles": "2.4.1",
"eslint": "8.26.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"mocha": "10.2.0",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"http-server": "14.1.1",
"@esbuild-plugins/node-modules-polyfill": "0.1.4",
"@esbuild-plugins/node-globals-polyfill": "0.1.1"
},
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"test-node": "mocha -r ts-node/register test/*.ts --timeout=2000 --exclude test/index.ts",
"eslint-setup": "npm install eslint --save-dev",
"eslint-run": "eslint . --ext .ts",
"test-browser": "ts-node --project browser/tsconfig.json browser/build.ts && http-server ./dist_client -a localhost -p 1234 -o /test.html",
"clean": "rimraf dist/ && rimraf dist_client/",
"copy-files": "copyfiles -u 1 dev.json dist/"
}
}