-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
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
42
43
{
"name": "sandbox",
"version": "1.0.0",
"description": "This is a sandbox repo for POC's.",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --ext .ts,.tsx",
"lintfix": "eslint . --ext .ts,.tsx --fix",
"start": "ts-node src/index.ts",
"test": "jest --config=jest.config.js --silent=false --verbose=true --reporters=default"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codrin-mares/sandbox.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codrin-mares/sandbox/issues"
},
"homepage": "https://github.com/codrin-mares/sandbox#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^12.19.3",
"@types/uuid": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"fp-ts": "2.9.5",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^8.10.2",
"typescript": "4.2.4",
"uuid": "^8.3.1"
}
}