-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "horarios-cc-api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-server": "babel -d ./build ./src -s",
"import-json": "mkdir build/data && cp src/data/* build/data/",
"build": "npm run clean && npm run build-server && npm run import-json",
"start": "node ./build/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"check-lint": "eslint --ext .js --ignore-path .gitignore .",
"lint": "eslint --fix --ext .js --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Guardians-DSC/horarios-cc-api.git"
},
"keywords": [],
"author": "Jadson Luan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Guardians-DSC/horarios-cc-api/issues"
},
"homepage": "https://github.com/Guardians-DSC/horarios-cc-api#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"eslint": "^5.16.0",
"nodemon": "^1.19.3"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"fs": "0.0.1-security"
}
}