-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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": "shopify-app",
"version": "0.1.0",
"description": "A template for building Shopify App",
"main": "dist/app.js",
"keywords": [
"koa",
"ts",
"shopify"
],
"scripts": {
"dev": "concurrently npm:dev:*",
"build": "npx tsc",
"dev:watch": "tsc -w",
"dev:start": "nodemon node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "thlg",
"license": "ISC",
"dependencies": {
"@shopify/shopify-api": "^1.1.0",
"dotenv": "^8.2.0",
"isomorphic-fetch": "^3.0.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-jwt": "^4.0.0",
"koa-log4": "^2.3.2",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"koa-views": "^7.0.0",
"mysql": "^2.18.1",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/koa": "^2.13.1",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"@types/koa-views": "^2.0.4",
"@types/mysql": "^2.15.18",
"concurrently": "^6.0.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
}
}