-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "sxapi-core",
"version": "0.3.66",
"description": "sxapi-core is an simple and extensible framework for building microservices API using javascript technologies",
"author": "STARTX <dev+sxapi_core@startx.fr>",
"homepage": "https://github.com/startxfr/sxapi-core",
"license": "GPL-3.0",
"private": false,
"analyze": true,
"contributors": [
{
"name": "startx-dev",
"email": "dev@startx.fr"
},
{
"name": "mallowtek",
"email": "mallowtek@gmail.com"
}
],
"keywords": [
"sxapi",
"startx",
"microservice",
"nodejs",
"testing",
"simple",
"lightweight",
"extensible",
"FaaS"
],
"main": "app.js",
"directories": {
"lib": "core",
"doc": "docs",
"test": "test",
"examples": "examples"
},
"scripts": {
"dev": "npm-run-all --parallel \"dev:start\" \"dev:internal:open\"",
"dev:env": "env",
"dev:clean": "rm -rf package-lock.json *.md docs",
"dev:install": "npm install --only=dev --no-audit -D && npm install --no-audit --only=prod -P && npm audit fix --force && npm dedupe",
"dev:build": "npm run dev:env && npm run dev:clean && npm run dev:install && npm update --save && npm audit fix --force && npm dedupe",
"dev:start": "npm install --only=dev --no-audit -D && npm install --no-audit --only=prod -P && npm audit fix --force && npm dedupe && npm test && npm start",
"dev:internal:open": "wait-on http://localhost:8077 && echo 'Application is running, open your browser to http://localhost:8077'",
"test": "./node_modules/.bin/mocha --exit",
"prod": "npm run prod:build && npm run prod:start",
"prod:clean": "rm -rf package-lock.json *.md docs test",
"prod:install": "npm install --only=prod --no-audit -P && npm dedupe",
"prod:build": "rm -rf package-lock.json *.md docs test && npm run prod:install -s",
"prod:start": "npm start",
"build": "npm run prod:build -s",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/startxfr/sxapi-core.git"
},
"bugs": {
"url": "https://github.com/startxfr/sxapi-core/issues"
},
"dependencies": {
"async": "^3.2.4",
"aws-sdk": "~2.1033.0",
"body-parser": "^1.20.1",
"busboy": "^0.3.1",
"change-case": "~4.1.2",
"cookies": "~0.8.0",
"cors": "~2.8.5",
"couchbase": "^4.1.0",
"express": "^4.18.2",
"glob": "^7.2.3",
"google-auth-library": "^7.14.1",
"googleapis": "^91.0.0",
"ip": "^1.1.8",
"js-yaml": "~4.1.0",
"md5": "~2.3.0",
"memcache": "~0.3.0",
"merge": "^2.1.1",
"mime-types": "^2.1.35",
"moment": "^2.29.4",
"mustache": "^4.2.0",
"mysql": "~2.18.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.8.0",
"object-recursive-iterator": "~2.1.0",
"pg": "^8.8.0",
"redis": "^3.1.2",
"request": "^2.88.2",
"siren2tva": "^1.2.0",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"timer-machine": "~1.1.0",
"twitter-v2": "~1.1.0",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "~4.3.0",
"http-server": "^14.1.1",
"jshint": "^2.13.5",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sinon": "~12.0.1",
"wait-on": "^6.0.1"
},
"engines": {
"node": ">= 12.19.0",
"npm": ">= 6.14.5"
},
"os": [
"darwin",
"linux",
"win32"
],
"arch": "any"
}