-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.19 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": "kotoba-js",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "swc src -d dist",
"dev": "nodemon",
"start": "node dist/index.js"
},
"author": "xetera",
"license": "MIT",
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.0.11",
"cmd-ts": "^0.7.0",
"fast-glob": "^3.2.7",
"fp-ts": "^2.11.1",
"typescript": "^4.4.3",
"winston": "^3.2.1"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.85",
"@swc/jest": "^0.2.3",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.9.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-check": "^2.17.0",
"jest": "^27.1.1",
"jest-junit": "^12.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0"
},
"jest-junit": {
"outputDirectory": "coverage"
},
"engines": {
"node": ">=12.13.0"
}
}