This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 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
49
50
51
52
53
54
55
56
57
{
"name": "api",
"version": "0.24.0",
"description": "API pública para consulta dos dados coletados pelo projeto Laddres",
"main": "index.js",
"scripts": {
"build": "webpack -p --progress --optimize-minimize",
"precommit": "npm run build",
"start": "nodemon --exec babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack",
"webpack:watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laddres/api.git"
},
"keywords": [
"laddres",
"dados",
"abertos",
"eleições"
],
"author": "Ludiico",
"license": "MIT",
"bugs": {
"url": "https://github.com/Laddres/api/issues"
},
"homepage": "https://github.com/Laddres/api#readme",
"dependencies": {
"body-parser": "^1.18.3",
"capitalize-pt-br": "^0.1.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mysql": "^2.15.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"husky": "^0.14.3",
"nodemon": "^1.17.4",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
}
}