-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "node-clean-architecture",
"version": "1.0.0",
"main": "index.js",
"author": "Douglas Godinho <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"cover": "jest --coverage",
"lint": "eslint src/**.ts",
"build": "yarn lint && yarn tsc",
"api": "node dist/entries/api.js",
"api:dev": "sucrase-node src/entries/api.ts"
},
"dependencies": {
"apollo-server-express": "^2.14.1",
"awilix": "^4.2.6",
"express": "^4.17.1",
"graphql": "^15.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.9",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"sucrase": "^3.15.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
}
}