-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 850 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 850 Bytes
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
{
"name": "solid-1-exercises",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npx -y tsc",
"prestart": "npm run build",
"start": "node ./build/server.js",
"dev": "tsnd ./src/server.ts",
"lint": "eslint . --ext .ts"
},
"keywords": [
"typescript",
"solid",
"refactor"
],
"author": "Pessoa Estudante",
"license": "ISC",
"devDependencies": {
"@types/express": "4.17.14",
"@types/node": "18.11.7",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-trybe-backend": "2.1.0",
"eslint-plugin-import": "2.26.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.8.4"
},
"dependencies": {
"express": "4.18.2"
}
}