-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "privateblog-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run compile && node ./dist/server.js",
"compile": "babel ./src --presets es2017 --plugins transform-es2015-modules-commonjs -d ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitrsavk/privateblog-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmitrsavk/privateblog-api/issues"
},
"homepage": "https://github.com/dmitrsavk/privateblog-api#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"body-parser": "^1.18.2",
"connect-pg-simple": "^4.2.1",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cookie-signature": "^1.1.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"moment": "^2.22.1",
"path": "^0.12.7",
"sequelize": "^4.37.6"
}
}