forked from freee/freee-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
52
53
{
"name": "freee-logger",
"version": "0.0.1",
"license": "MIT",
"homepage": "https://github.com/freee/freee-logger",
"repository": {
"type": "git",
"url": "https://github.com/freee/freee-logger.git"
},
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"lint": "eslint src/**/*.ts",
"lint_fix": "eslint --fix src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.20.7",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"copy-webpack-plugin": "^8.1.1",
"eslint": "6.8.0",
"eslint-config-freee-typescript": "0.2.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"maskdata": "1.1.4",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"ts-loader": "8.1.0",
"tsconfig-freee": "0.1.1",
"typescript": "4.0.3",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"log4js": "^6.3.0"
}
}