-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 874 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 874 Bytes
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
{
"name": "nft-api-examples",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "ts-node --transpile-only index.ts",
"format": "prettier --write '**/*.{html,js,json,md,ts}'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^16.7.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.5.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.23.0",
"tslib": "^2.3.1"
}
}