-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "Ecoleta",
"version": "1.0.0",
"description": "Aplicação Ecoleta feita na Next Level Week #1 da Rocketseat, feita com HTML e CSS puro.",
"main": "src/server.js",
"scripts": {
"start:server": "tsc && node dist/server.js",
"dev:server": "ts-node-dev --respawn --transpileOnly src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateusfg7/Ecoleta.git"
},
"author": "Rocketseat/Mateus Felipe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mateusfg7/Ecoleta/issues"
},
"homepage": "https://github.com/mateusfg7/Ecoleta#readme",
"dependencies": {
"express": "^4.17.1",
"nunjucks": "^3.2.1",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/nunjucks": "^3.1.3",
"@types/sqlite3": "^3.1.6",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"nodemon": "^2.0.4",
"ts-node-dev": "^1.0.0-pre.49",
"typescript": "^3.9.5"
}
}