-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 979 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
{
"name": "problems",
"version": "1.0.0",
"description": "problem sovling",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore \"**/*.(js|json|ts|tsx)\"",
"check-format": "npm run prettier -- --list-different",
"format": "npm run prettier -- --write ",
"test": "jest",
"test:watch": "jest --watchAll",
"validate": "npm run check-format && npm run lint && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"jest": "^26.6.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
}
}