-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "south-park-taxi-server",
"description": "taxi investor's cabinet",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "yarn run cypress open",
"server": "nodemon",
"build": "rm -rf dist && NODE_ENV=production babel src --out-dir dist",
"bundle": "cpx \"dist/**/*\" \"functions/bundle\"",
"pretty": "prettier --check 'src/**/*.{js,jsx}'",
"pretty:fix": "prettier --write 'src/**/*.{js,jsx}'",
"prisma": "npx prisma generate",
"prismai": "npx prisma introspect",
"up": "docker-compose up --detach",
"down": "docker-compose down",
"connect": "docker exec -i -t $(docker ps -q) bash",
"prismam": "npx prisma migrate save --name init --experimental && npx prisma migrate up --experimental"
},
"main": "index.js",
"author": "Yevhenii Osadchyi",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@prisma/client": "^2.0.0",
"apollo-link-error": "^1.1.13",
"apollo-server": "^2.14.1",
"apollo-server-lambda": "^2.14.1",
"bcrypt": "^4.0.1",
"cpx": "^1.5.0",
"cypress": "^4.5.0",
"dotenv": "^8.2.0",
"exceljs": "^4.0.0",
"graphql": "^15.0.0",
"graphql-depth-limit": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@prisma/cli": "^2.0.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}