-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
58
59
60
61
62
63
64
{
"name": "shipenguin",
"version": "1.0.0",
"description": "A reference implementation of ShipEngine API for address validation, shipping rates, and shipping labels.",
"main": "server/node/server.js",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@sendgrid/mail": "^7.2.5",
"axios": "^0.19.2",
"body-parser": "^1.17.1",
"compression": "^1.7.4",
"dotenv": "^4.0.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"helmet": "^4.1.1",
"morgan": "^1.9.1",
"ngrok": "^3.2.7",
"node-fetch": "^2.6.0",
"opn": "^6.0.0",
"postcss-import": "^12.0.1",
"stripe": "^6.36.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"cross-env": "^7.0.2",
"@babel/preset-env": "^7.10.4",
"@types/faker": "^4.1.5",
"autoprefixer": "^9.8.5",
"browser-sync": "^2.26.12",
"bulma": "^0.8.2",
"cssnano": "^4.1.10",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"ngrok": "^3.2.7",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"tailwindcss": "^1.8.7"
},
"scripts": {
"setup-cli": "stripe login --project-name=stripe-payments-demo",
"start": "node server/server.js",
"dev": "cross-env NODE_ENV=development nodemon server/server.js",
"dev:ngrok": "cross-env NODE_ENV=development node server/server.js",
"gulp_watch": "gulp watch",
"build-css": "npx tailwind build public/css/styles.css -o public/css/output/output.css"
},
"repository": {
"type": "git",
"url": "https://github.com/ShipEngine/shipenguin_web_app"
},
"author": "Kasey Cantu",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShipEngine/shipenguin_web_app/issues"
},
"homepage": "https://shipenguin-dev.herokuapp.com/"
}