-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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": "fun_js",
"version": "1.0.0",
"description": "A functional NodeJS application example",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "npm run build && node -r dotenv/config dist/persistence/migrator",
"build": "rm -rf dist && babel src/ -d dist -s",
"serve": "npm run build && node -r dotenv/config dist/server"
},
"author": "Fabio Luz",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^6.0.0",
"postgres-migrations": "^2.0.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"fluture": "^8.0.2",
"fluture-sanctuary-types": "^2.2.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"pg": "^7.4.3",
"sanctuary": "^0.15.0",
"sanctuary-def": "^0.18.1",
"sanctuary-type-classes": "^9.0.0",
"sanctuary-type-identifiers": "^2.0.1",
"uuid": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fabioluz/fun-js.git"
}
}