-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "urlshortener",
"version": "0.0.1",
"description": "Simple URL shortener in NodeJS / Express / PostgreSQL",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/rimraf dist/ && ./node_modules/.bin/babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "node dist/index.js",
"postinstall": "npm run build",
"dev": "./node_modules/.bin/babel-watch ./src "
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexgvozden/url-shortener.git"
},
"author": "Alex Gvozden <[email protected]> (http://alexweb.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexgvozden/url-shortener/issues"
},
"homepage": "https://github.com/alexgvozden/url-shortener#readme",
"engines": {
"node": "6.11.3"
},
"dependencies": {
"cookie-parser": "1.4.3",
"csurf": "1.9.0",
"ejs": "2.5.7",
"ejs-lint": "0.3.0",
"express": "4.16.2",
"moment": "2.21.0",
"path": "0.12.7",
"pg": "7.4.1",
"pg-hstore": "2.3.2",
"sequelize": "4.35.1",
"babel-polyfill": "6.26.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-preset-es2015": "6.24.1",
"babel-watch": "2.0.7",
"rimraf": "2.6.2"
}
}