-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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": "buying-what",
"version": "1.0.0",
"main": "src/server.ts",
"repository": "git@github.com:gabrielborgesdm/buying-what.git",
"author": "Gabriel Borges <gabrielborgesdemoraes@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/server.ts",
"test": "jest",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start": "node dist/server.js"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.4",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
},
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-server": "^2.25.1",
"dotenv": "^10.0.0",
"graphql-yoga": "^1.18.3",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2",
"ts-jest": "^27.0.3"
}
}