-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1017 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
37
38
39
{
"name": "8dxlounge.js",
"version": "0.0.2",
"main": "dist/main.js",
"types": "dist/src/index.d.ts",
"author": "takagi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iamtakagi/8dxlounge.js.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"prettier": "prettier --write .",
"eslint": "eslint . --format friendly",
"test": "jest",
"test:watch": "jest --coverage --silent=false --verbose false --watch",
"build": "webpack"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.26.2",
"webpack-cli": "^4.5.0"
}
}