forked from papyrcms/papyrcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.04 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
65
66
67
68
69
70
71
72
{
"name": "papyr-cms",
"version": "2.2.0",
"description": "A dynamic CMS template made with Next.js",
"engines": {
"node": "15.0.1"
},
"scripts": {
"dev": "next -p 5000",
"test": "NODE_ENV=test TS_NODE_TRANSPILE_ONLY=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha",
"build": "next build",
"start": "NODE_ENV=production next start -p $PORT",
"deploy": "git remote | xargs -L1 -I R git push R master",
"reinstall": "rm -rf node_modules/ && npm install"
},
"keywords": [],
"author": "drkgrntt",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cloudinary": "^1.25.1",
"cross-fetch": "^3.1.4",
"formidable": "^1.2.2",
"google-map-react": "^2.1.9",
"googleapis": "^70.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mariadb": "^2.5.3",
"moment": "^2.29.1",
"mongoose": "^5.12.3",
"mysql2": "^2.2.5",
"next": "^10.1.3",
"nodemailer": "^6.5.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-render-html": "^0.6.0",
"react-stripe-elements": "^6.1.2",
"react-tinymce": "^0.7.0",
"sanitize-html": "^2.3.3",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2",
"stripe": "^8.142.0",
"swagger-ui-react": "^3.46.0",
"tedious": "^11.0.7"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.16",
"@types/formidable": "^1.2.1",
"@types/google-map-react": "^2.1.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/mongoose": "^5.10.4",
"@types/nodemailer": "^6.4.1",
"@types/react": "^17.0.3",
"@types/react-stripe-elements": "^6.0.4",
"@types/sanitize-html": "^1.27.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}