-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "todo-platform",
"version": "1.0.0",
"description": "todo-platform",
"main": "index.js",
"scripts": {
"test": "jest --silent --colors --passWithNoTests --noStackTrace",
"test:dev": "jest --watch --silent --colors",
"test:unit": "npm run test -- -c jest-unit-config.js",
"test:integration": "npm run test -- -c jest-integration-config.js",
"test:staged": "npm run test -- --findRelatedTests",
"test:ci": "jest --coverage --silent --verbose"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulosantiago/todo-plataform.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saulosantiago/todo-plataform/issues"
},
"homepage": "https://github.com/saulosantiago/todo-plataform#readme",
"devDependencies": {
"husky": "^4.3.8",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"standard": "^14.3.4"
},
"dependencies": {
"bcrypt": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"validator": "^13.1.1"
}
}