-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 936 Bytes
/
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
{
"name": "shack_shop_backend",
"author": "Erik Ostlund",
"version": "0.1.0",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/ErikOstlund/shackshop_backend"
},
"dependencies": {
"@graphql-tools/utils": "^8.6.2",
"apollo-server-core": "^3.6.3",
"apollo-server-express": "^3.6.3",
"express": "^4.17.1",
"graphql": "^16.3.0",
"lodash.merge": "^4.6.2",
"mongodb": "^4.4.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash.merge": "^4.6.6",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"dotenv": "^16.0.0",
"eslint": "^8.4.1",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"start": "nodemon -r dotenv/config src/index.ts",
"build": "tsc -p ./",
"seed": "ts-node -r dotenv/config temp/seed.ts"
}
}