-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 990 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
35
36
{
"name": "x-typescript",
"version": "0.0.1",
"description": "eXample typescript",
"main": "index.js",
"repository": "https://github.com/jnst/x-typescript",
"author": "jnst <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --write **/*.{ts,json,yaml,md}",
"start:yaml": "ts-node yaml/main.ts",
"start:redis": "ts-node redis/main.ts",
"start:luxon": "ts-node luxon/main.ts",
"start:enum": "ts-node enum/main.ts",
"start:ranking": "ts-node ranking/main.ts"
},
"dependencies": {
"ioredis": "^4.0.2",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"luxon": "^1.4.3",
"signale": "^1.3.0",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/ioredis": "^4.0.3",
"@types/js-yaml": "^3.11.2",
"@types/lodash": "^4.14.117",
"@types/luxon": "^1.4.0",
"@types/node": "^10.11.2",
"@types/signale": "^1.2.0",
"prettier": "^1.14.3",
"ts-node": "^7.0.1"
}
}