-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 951 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 951 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
{
"name": "e-commerce-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/RobertooFelipe/eCommerceAPI.git",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r dotenv/config ./src/server.ts",
"build": "tsc",
"start": "node -r dotenv/config ./dist/server.js"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^16.0.2",
"express": "^4.18.1"
}
}