-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 KB
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
{
"name": "themost-test-src",
"version": "2.12.2",
"description": "MOST Web Framework Codename Blueshift Test Api Server",
"repository": " https://github.com/themost-framework/themost-test.git",
"license": "BSD-3-Clause",
"author": "Kyriakos Barbounakis<k.barbounakis@gmail.com>",
"scripts": {
"ci-sub-modules": "cd modules/test && npm ci",
"clean": "rimraf modules/test/dist",
"build": "cd modules/test && rimraf dist && babel server --out-dir dist/server --copy-files --config-file ./babel.config.js",
"serve": "cd modules/test && nodemon server/standalone.js",
"debug": "cd modules/test && nodemon --inspect-brk server/standalone.js",
"test": "jest",
"lint": "eslint modules/test/server"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@themost/cli": "^2.5.7",
"@themost/client": "^2.16.0",
"@themost/common": "^2.12.0",
"@themost/data": "^2.23.2",
"@themost/ejs": "^2.0.1",
"@themost/express": "^2.6.2",
"@themost/json-logger": "^1.3.0",
"@themost/node": "^2.5.2",
"@themost/query": "^2.14.17",
"@themost/sqlite": "^2.11.1",
"@themost/web": "^2.7.0",
"@themost/xml": "^2.5.2",
"@types/app-module-path": "^2.2.2",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.175",
"@types/node-fetch": "^2.6.2",
"@types/passport": "^1.0.7",
"app-module-path": "^2.2.0",
"babel-eslint": "^10.1.0",
"commander": "^10.0.0",
"cors": "^2.8.5",
"es6-promisify": "^6.1.1",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"http-errors": "^2.0.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.5",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-anonymous": "^1.0.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"rimraf": "^2.7.1",
"temp": "^0.9.1",
"typescript": "^3.9.10"
}
}