-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
51
52
53
54
55
56
57
{
"name": "custom-server-typescript",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@babel/types": "^7.7.2",
"@shopify/app-bridge-react": "^1.11.0",
"@shopify/koa-shopify-auth": "^3.1.50",
"@shopify/koa-shopify-graphql-proxy": "^3.2.3",
"@shopify/polaris": "^4.8.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/js-cookie": "^2.2.4",
"@types/koa-router": "^7.0.42",
"@types/koa-session": "^5.10.1",
"@zeit/next-css": "^1.0.1",
"apollo-boost": "^0.4.4",
"axios": "^0.19.0",
"dotenv": "^8.2.0",
"draft-js": "^0.11.2",
"graphql": "^14.5.8",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"next": "latest",
"ngrok": "^3.2.5",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"store-js": "^2.0.4"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@types/koa": "^2.0.52",
"@types/node": "^12.12.11",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"nodemon": "^1.19.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.4.5"
}
}