-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "dgraph-dev",
"version": "0.0.1",
"description": "A Ready-To-Use Dgraph Local Development Environment",
"main": "script.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles --runInBand --silent",
"lint": "eslint . --fix --ext .ts",
"build:production": "npx webpack --mode production --target webworker",
"build:development": "npx webpack --mode development --target webworker",
"prestart:dev": "sh first_time_bundle_creator.sh && docker compose up -d",
"start:dev": "node -r @swc-node/register dev.ts",
"poststart:dev": "docker compose down -d",
"pretty": "prettier --write ."
},
"repository": {
"type": "git",
"url": "[email protected]:pshaddel/dgraph-dev.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc-node/register": "^1.6.2",
"@swc/core": "^1.3.39",
"@swc/jest": "^0.2.24",
"@total-typescript/ts-reset": "^0.4.2",
"@types/axios": "^0.14.0",
"@types/jest": "^29.4.0",
"@types/node": "^16.18.16",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"axios": "^1.3.4",
"cli-color": "^2.0.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"prettier": "^2.8.4",
"ts-loader": "^9.2.6",
"typescript": "^4.9.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}