-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 864 Bytes
/
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
{
"name": "calculadora",
"version": "1.0.0",
"main": "index.js",
"author": "pedro-drosa <pedro_drosa@hotmail.com>",
"license": "MIT",
"scripts": {
"build": "npx swc ./src -d dist",
"start": "npm run build && node ./dist/index.js",
"prepare": "husky install",
"test": "jest",
"test:staged": "jest --findRelatedTests"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.11",
"@swc/jest": "^0.2.23",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"git-commit-msg-linter": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.7",
"prettier": "2.3.0"
},
"dependencies": {
"enquirer": "^2.3.6"
}
}