-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.82 KB
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
{
"name": "octane-node",
"version": "2.3.0",
"description": "Node bindings for the Octane API",
"author": "team@getoctane.io",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/getoctane/octane-node",
"license": "MIT",
"keywords": [
"octane",
"api"
],
"scripts": {
"codegen": "scripts/codegen.sh",
"build": "scripts/build.sh",
"acceptance": "scripts/acceptance.sh",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"jest": "TZ=America/New_York jest",
"update-jest-snapshots": "jest -u",
"test": "run-s build test:* acceptance",
"test:jest": "TZ=America/New_York jest",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@next/eslint-plugin-next": "^11.0.1",
"@openapitools/openapi-generator-cli": "2.4.26",
"@types/jest": "^27.0.1",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"babel-jest": "^29.5.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.2",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"dayjs": "^1.10.7"
}
}