-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.05 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.05 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
{
"name": "themost-test-src",
"version": "2.5.0",
"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": "jasmine",
"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",
"@themost/cli": "^2.5.7",
"@themost/client": "^2.15.0",
"@themost/common": "^2.10.4",
"@themost/data": "^2.11.4",
"@themost/ejs": "^2.0.1",
"@themost/express": "^1.7.0",
"@themost/node": "^2.5.2",
"@themost/query": "^2.11.4",
"@themost/sqlite": "^2.7.0",
"@themost/web": "^2.7.0",
"@themost/xml": "^2.5.2",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.0",
"@types/lodash": "^4.17.4",
"@types/node-fetch": "^2.6.2",
"@types/passport": "^1.0.7",
"babel-eslint": "^10.1.0",
"commander": "^10.0.0",
"cors": "^2.8.5",
"es6-promisify": "^6.1.1",
"eslint": "^7.32.0",
"http-errors": "^2.0.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.5",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"rimraf": "^2.7.1",
"temp": "^0.9.1",
"typescript": "^3.9.10"
}
}