-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "sigeva-api-user",
"version": "1.0.0",
"description": "Microserviço para gerenciamento de usuários do SIGEVA",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development nodemon --exec babel-node src/main.js",
"build": "babel src -d dist",
"serve": "npm run build && NODE_ENV=production node dist/main.js",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --timeout 4000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccsa-ufrn/sigeva-api-user.git"
},
"keywords": [
"sigeva",
"usuarios",
"api"
],
"author": "Assessoria Técnica CCSA",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ccsa-ufrn/sigeva-api-user/issues"
},
"homepage": "https://github.com/ccsa-ufrn/sigeva-api-user#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"request": "2.79.0"
},
"dependencies": {
"async": "^2.1.5",
"babel-polyfill": "^6.23.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.0",
"compression": "^1.6.2",
"express": "^4.15.1",
"moment": "^2.17.1",
"mongoose": "^4.8.6"
}
}