-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "akupintar-online-test",
"version": "1.0.0",
"description": "akupintar.id online test",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"clean": "rimraf ./dist",
"dev": "ts-node --pretty ./src/index.ts",
"build": "rimraf ./dist && babel --extensions .ts ./src -d dist",
"start": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github.com/putuadityabayu/akupintar-online-test.git"
},
"author": "Putu Aditya <aditya@portalnesia.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@babel/standalone": "^7.19.5",
"@types/babel__core": "^7.1.19",
"@types/babel__standalone": "^7.1.4",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/md5": "^2.3.2",
"@types/node": "^18.8.4",
"@types/supertest": "^2.0.12",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@portalnesia/utils": "^1.1.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.6.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"mysql2": "^2.3.3",
"sequelize": "^6.25.0"
}
}