forked from Angola-Api/Angola-Api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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": "nodesetup",
"version": "1.0.0",
"description": "setup for node js projects",
"main": "src/index.js",
"author": "Lutero Elavoco",
"license": "MIT",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start": "node dist/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_nodules --no-notify src/server.ts",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/node": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@types/jest": "^26.0.20",
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"git-commit-msg-linter": "^3.0.0",
"jest": "^26.6.3",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@types/express": "^4.17.11",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"express": "^4.17.1",
"mongoose": "^5.11.15",
"puppeteer": "^7.1.0",
"ts-jest": "^26.5.1"
}
}