-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.43 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
{
"name": "ent-starter",
"version": "1.0.0",
"description": "ent starter",
"main": "index.js",
"scripts": {
"test": "jest",
"compile": "rm -rf dist && ./node_modules/.bin/ent-custom-compiler",
"start": "docker-compose -f docker-compose.dev.yml up",
"start-fast": "npm run compile && node --inspect=0.0.0.0 dist/graphql/index.js",
"codegen": "docker-compose -f docker-compose.dev.yml run --rm app tsent codegen",
"rebuild-image": "docker-compose -f docker-compose.dev.yml build",
"upgrade": "docker-compose -f docker-compose.dev.yml run --rm app tsent upgrade"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lolopinto/ent-starter.git"
},
"keywords": [
"ent",
"starter"
],
"author": "lolopinto",
"license": "ISC",
"bugs": {
"url": "https://github.com/lolopinto/ent-starter/issues"
},
"homepage": "https://github.com/lolopinto/ent-starter#readme",
"dependencies": {
"@snowtop/ent": "^0.0.8",
"@snowtop/ent-email": "^0.0.1",
"@snowtop/ent-passport": "0.0.1",
"@snowtop/ent-password": "^0.0.1",
"@types/express": "^4.17.9",
"better-sqlite3": "^7.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.4.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.1",
"@types/jest": "^26.0.20",
"tsconfig-paths": "^3.10.1"
}
}