-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "usetypescript",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "mocha",
"dev": "npx nodemon",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start": "node typescript/dist/src/index.js",
"sb": "tsc && node ./typescript/dist/src/index.js",
"benchmark": "tsc && node typescript/dist/benchmark/index.js"
},
"keywords": [
"leetcoce",
"competitive-programmming"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"author": "rmscoal",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"microtime": "^3.1.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/benchmark": "^2.1.2",
"benchmark": "^2.1.4",
"lodash": "^4.17.21"
}
}