-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.99 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "topcoder-member-api",
"version": "1.0.0",
"description": "TopCoder Member V6 API",
"main": "app.js",
"scripts": {
"postinstall": "prisma generate --schema=prisma/schema.prisma && prisma generate --schema=prisma/identity-schema.prisma && prisma generate --schema=prisma/challenge-schema.prisma",
"start": "node app.js",
"start:dev": "nodemon app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"init-db": "prisma migrate dev",
"seed-data": "node src/scripts/seed-data.js",
"reset-db": "prisma migrate reset",
"test": "mocha -t 20000 test/unit/*.test.js --exit",
"test:cov": "nyc --reporter=html --reporter=text npm test",
"migrate-dynamo-data": "node src/scripts/migrate-dynamo-data.js",
"recalculate-member-stats": "node src/scripts/recalculateMemberStats.js"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"aws-sdk-mock": "^6.2.1",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^11.7.0",
"mocha-prepare": "^0.1.0",
"nodemon": "^3.1.9",
"nyc": "^17.1.0",
"standard": "^12.0.1"
},
"dependencies": {
"@prisma/adapter-pg": "^7.0.1",
"@prisma/client": "^6.10.1",
"@react-pdf/renderer": "^3.4.4",
"@topcoder/challenge-api-v6": "github:topcoder-platform/challenge-api-v6#master",
"@topcoder/engagements-api-v6": "topcoder-platform/engagements-api-v6.git#master",
"@topcoder/learning-paths-api": "github:topcoder-platform/learning-paths-api#master",
"@topcoder/resource-api-v6": "topcoder-platform/resource-api-v6.git#master",
"@topcoder/standardized-skills-api": "topcoder-platform/standardized-skills-api.git#master",
"@topcoder/tc-finance-api": "topcoder-platform/tc-finance-api.git#master",
"@topcoder/tc-identity-service": "topcoder-platform/identity-api-v6.git#master",
"aws-sdk": "^2.466.0",
"axios": "^0.27.2",
"bluebird": "^3.5.1",
"body-parser": "^1.15.1",
"city-timezones": "^1.3.2",
"config": "^3.0.1",
"cors": "^2.7.1",
"country-calling-code": "^0.0.3",
"dotenv": "^17.3.1",
"express": "^4.15.4",
"express-fileupload": "^1.1.4",
"express-interceptor": "^1.2.0",
"file-type": "^16.5.4",
"file-type-checker": "^1.1.2",
"get-parameter-names": "^0.3.0",
"http-status-codes": "^1.3.0",
"joi": "^14.0.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.19",
"mime-types": "^2.1.35",
"moment": "^2.27.0",
"moment-timezone": "^0.5.43",
"mysql2": "^3.14.3",
"pg": "^8.16.3",
"prisma": "^6.10.1",
"qs": "^6.14.1",
"react": "^18.3.1",
"react-pdf-html": "^2.1.5",
"request": "^2.88.2",
"sharp": "^0.34.1",
"swagger-ui-express": "^5.0.1",
"tc-core-library-js": "topcoder-platform/tc-core-library-js.git#master",
"topcoder-bus-api-wrapper": "topcoder-platform/tc-bus-api-wrapper.git",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"yamljs": "^0.3.0"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"/prisma/"
]
}
}