-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
63
64
65
66
67
68
69
{
"name": "wpcool",
"version": "0.0.0",
"description": "Wordpress API Enhancer",
"scripts": {
"lint": "eslint . --ext .js,.ts,.tsx --ignore-path .gitignore",
"dev": "nodemon --exec ts-node src/index.ts",
"build:server": "tsc",
"build:web": "next build"
},
"repository": {
"url": "youngtailors/wpcool",
"type": "git"
},
"author": "Young Tailors <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.16.0",
"@types/react-native": "^0.57.31",
"@types/zeit__next-typescript": "^0.1.1",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.5.0",
"eslint-config-typescript-recommended": "^1.4.17",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^1.0.0-rc.3",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.7",
"prettier": "^1.15.2",
"ts-node": "^7.0.1",
"typescript": "~3.1.1",
"typescript-eslint-parser": "^22.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{ts,js}": [
"yarn lint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
},
"dependencies": {
"apollo-server-express": "^2.3.1",
"axios": "^0.18.0",
"class-validator": "^0.9.1",
"express": "^4.16.4",
"graphql-type-json": "^0.2.1",
"humps": "^2.0.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.16.0",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-react-native-web": "^0.9.13",
"next": "^7.0.2",
"react": "^16.7.0",
"react-art": "^16.7.0",
"react-dom": "^16.7.0",
"react-native-web": "^0.10.0-alpha.3"
}
}