-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
{
"name": "notional",
"version": "0.1.3",
"description": "An unofficial Notion API for interacting with table data in NodeJS",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf ./build && tsc",
"prepublish": "npm run build"
},
"author": "TimRobinson1",
"license": "ISC",
"jest": {
"rootDir": "src",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/(__tests__/)?.*(\\.|/)(test|spec))\\.(j|t)s?$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/moment": "^2.13.0",
"@types/node": "^13.5.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"rimraf": "^3.0.0",
"ts-jest": "^25.3.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"axios": "^0.19.2",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"uuid": "^8.0.0"
}
}