-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "sourcecode-api",
"version": "1.0.0",
"description": "API for Source Code",
"repository": {
"type": "git",
"url": "https://github.com/SourceCodeOER/sourcecode_api.git"
},
"scripts": {
"start": "node ./bin/www",
"createSchema": "node ./bin/create_schema",
"migrate": "npx sequelize-cli db:migrate",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate",
"setUp": "npm run createSchema && npm run migrate",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000 --forceExit",
"pretest": "cross-env NODE_ENV=test npm run setUp"
},
"author": "jy95",
"license": "GPL-3.0-or-later",
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "latest",
"connect-chain-if": "^1.0.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"debug": "latest",
"del": "^5.1.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"lodash.difference": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.isequal": "^4.5.0",
"lodash.partition": "^4.6.0",
"lodash.uniqwith": "^4.5.0",
"mime-types": "latest",
"morgan": "^1.10.0",
"move-file": "^2.0.0",
"multer": "^1.4.2",
"openapi-enforcer": "^1.10.3",
"openapi-enforcer-middleware": "^1.2.2",
"openapi-enforcer-multer": "^0.1.6",
"passport": "^0.4.1",
"passport-json": "^1.2.0",
"passport-jwt": "^4.0.0",
"pg": "^8.0.3",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.7",
"sequelize-cli": "^5.5.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^1.0.10-4.2.3",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/sequelize": "latest",
"@types/supertest": "latest",
"jest": "^25.4.0",
"redoc-cli": "^0.9.7",
"supertest": "^5.0.0-0"
}
}