-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 789 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 789 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
{
"name": "node-setup",
"version": "1.0.0",
"main": "index.js",
"author": "EriikGabriel <erikgabriel.lins@hotmail.com>",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"jest": "^27.2.5",
"parcel": "^2.0.1",
"ts-jest": "^27.0.6",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
},
"dependencies": {
"express": "^4.17.1"
}
}