-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (40 loc) · 1019 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
34
35
36
37
38
39
40
41
{
"name": "CircleCi-Utube",
"version": "1.0.0",
"description": "projeto para começar a aprender a desenvolver orientado a testes",
"scripts": {
"build": "sucrase ./src -d ./dist --transforms imports",
"dev": "nodemon ./src/server.js",
"start": "node ./dist/server.js",
"test": "jest"
},
"repository": "https://github.com/josejonathan7/Circleci-Urube.git",
"author": "José Jonathan",
"license": "MIT",
"devDependencies": {
"@sucrase/jest-plugin": "^2.2.0",
"@types/jest": "^27.0.2",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"sucrase": "^3.20.3",
"supertest": "^6.1.6"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"uuidv4": "^6.2.12"
},
"jest": {
"transform": {
".(js|jsx|ts|tsx)": "@sucrase/jest-plugin"
}
},
"nodemonConfig": {
"execMap": {
"js": "node -r sucrase/register"
}
}
}