-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.63 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
{
"name": "Lesspod",
"version": "0.1.0",
"description": "serverless blogging engine",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=testing DB_NAME=lesspod-test mocha api/test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rajan/lesspod.git"
},
"author": "Rajan Chandi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rajan/lesspod/issues"
},
"homepage": "https://github.com/Rajan/lesspod#readme",
"dependencies": {
"@websanova/vue-upload": "^0.2.14-beta",
"autoprefixer": "^8.6.2",
"axios": "^0.18.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcrypt": "^2.0.1",
"bcrypt-promise": "^2.0.0",
"body-parser": "^1.18.3",
"buefy": "^0.6.6",
"bulma": "^0.7.1",
"chai-http": "^4.0.0",
"debug": "^3.1.0",
"deep-extend": "^0.5.1",
"dotenv": "^5.0.1",
"dotenv-extended": "^2.0.2",
"ejs": "^2.6.1",
"express": "^4.16.3",
"font-awesome": "^4.7.0",
"js-cookie": "^2.2.0",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"parcel-bundler": "^1.8.1",
"parse-error": "^0.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"quill": "^1.3.6",
"sequelize": "^4.37.10",
"sqlite3": "^4.0.0",
"validator": "^10.3.0",
"vue": "^2.5.16",
"vue-disqus": "^3.0.3",
"vue-js-modal": "^1.3.15",
"vue-moment": "^3.2.0",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5"
},
"devDependencies": {
"ava": "^0.25.0",
"chai": "^4.1.2",
"faker": "^4.1.0",
"mocha": "^5.2.0"
}
}