-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "microcms-client",
"version": "0.0.8",
"description": "this is microCMS client for TypeScript and JavaScript.",
"main": "index.js",
"repository": "[email protected]:UndyingSugimoto/microCMS-client.git",
"author": "UndyingSugimoto",
"license": "MIT",
"scripts": {
"start": "yarn build:live",
"lint": "npx eslint '**/*.ts'",
"lint:fix": "npx eslint '**/*.ts' --fix",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"dependencies": {
"axios": "^0.19.2",
"typescript": "^3.9.5"
},
"keywords": [
"microCMS",
"CMS",
"TypeScript",
"JavaScript"
],
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"stylelint-config-recommended": "^3.0.0",
"ts-node": "^8.10.2"
}
}