-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "simple-clothing-store",
"version": "0.0.2",
"description": "Simple webstore implementation with Paypal & Printful integration",
"main": "server.js",
"scripts": {
"start": "node server.js",
"watch": "nodemon server.js",
"build-tux": "cd frontend && npm run build && mv build ../ && cd ../ && npm start",
"build-win": "cd frontend && npm run build && move build ../ && cd ../ && npm start",
"build-tux-clean": "rmdir -r build && npm run build-tux",
"build-win-clean": "RMDIR build /S && npm run build-win"
},
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.2",
"currency.js": "^2.0.3",
"dotenv": "^9.0.2",
"express": "^4.17.1"
},
"engines": {
"node": "13.14.x"
},
"repository": {
"url": "https://github.com/kerkkoh/simple-clothing-store"
},
"license": "MIT",
"keywords": [
"printful",
"ecommerce",
"paypal",
"react",
"nodejs",
"javascript"
],
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.7"
}
}