-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
{
"name": "@fairdatasociety/bigbang-api",
"version": "1.0.0",
"description": "Big Bang API",
"main": "dist/index.min.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:node --env mode=production",
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"test": "jest",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json",
"compile:node": "webpack --progress --env target=node"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.15",
"@types/glob": "^8.0.1",
"@types/jest": "^29.2.6",
"@types/line-by-line": "^0.1.6",
"@types/node": "^18.11.17",
"@types/supertest": "^2.0.12",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.48.2",
"autocompleter": "^7.1.0",
"babel-jest": "^29.4.1",
"babel-loader": "^9.1.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"glob": "^8.1.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^1.2.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^6.4.0",
"express": "^4.18.2",
"knex": "^2.4.2",
"mysql2": "^3.3.3",
"nodemon": "^2.0.22"
}
}