-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "shopify-translator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rm -rf .next && npx tsc && node ./bin/server.js",
"build": "rm -rf .next && npx tsc && next build",
"start": "node ./bin/server.js --production",
"docker": "npm run build && docker build -t shopify-translator . && docker run -it --rm --name shopify-translator -p 80:80 -e NODE_ENV=production shopify-translator"
},
"dependencies": {
"@svgr/webpack": "^6.2.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fs": "^0.0.1-security",
"lup-language": "^1.9.1",
"multer": "^1.4.4",
"next": "12.1.4",
"node-fetch": "^2.6.7",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.1",
"@types/react": "^17.0.44",
"@types/react-dom": "^18.0.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"typescript": "^4.6.4"
}
}