-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 893 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": "mars-rover",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"watch": "ts-node-dev --transpileOnly --respawn src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier . --write",
"pretest": "npm run lint && npm run prettier",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "26.0.7",
"@types/node": "14.0.26",
"@typescript-eslint/eslint-plugin": "3.7.1",
"@typescript-eslint/parser": "3.7.1",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.1.0",
"prettier": "2.0.5",
"ts-jest": "26.1.3",
"ts-node-dev": "1.0.0-pre.56",
"typescript": "3.9.7"
}
}