-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "typographic",
"version": "1.0.0",
"description": "Typographic is an example business using Stripe Billing.",
"author": "",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/stripe/stripe-billing-typographic.git"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-history-api-fallback": "^1.5.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"follow-redirects": "^1.14.7",
"jsonwebtoken": "^8.3.0",
"jwt-decode": "^2.2.0",
"knex": "^0.14.6",
"lodash": "^4.17.20",
"mysql": "^2.16.0",
"parse5": "^2.2.3",
"sqlite3": "^5.0.2",
"stripe": "^7.8.0",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"chokidar": "^2.0.4",
"nodemon": "^1.18.7",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-json": "^2.3.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-vue": "^4.3.2",
"uglify-es": "^3.3.10",
"vue-template-compiler": "^2.5.17"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"setup": "node setup.js",
"start": "node server/server.js",
"production": "NODE_ENV=production node server/server.js",
"inspect": "nodemon --inspect server/server.js"
}
}