-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nlp-basics",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@auth0/nextjs-auth0": "^0.16.0",
"@babel/runtime": "^7.12.5",
"@tensorflow/tfjs": "^3.11.0",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/recharts": "^1.8.19",
"@types/styled-components": "^4.4.3",
"@vercel/node": "^1.11.1",
"antd": "^4.16.6",
"aws-sdk": "^2.931.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"compromise": "^13.11.4",
"compromise-sentences": "^0.3.0",
"gray-matter": "^4.0.2",
"husky": "^4.3.8",
"next": "^12.0.4",
"next-mdx-remote": "^2.1.3",
"nprogress": "^0.2.0",
"prism-react-renderer": "^1.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-lottie": "^1.2.3",
"recharts": "^1.8.5",
"slate": "^0.71.0",
"slate-react": "^0.71.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@types/nprogress": "^0.2.0",
"@types/react-lottie": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"lint-staged": "^10.5.4",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=12.0.0"
},
"babel": {
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"production": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": false
}
]
]
}
}
},
"resolutions": {
"@babel/runtime": "^7.12.5"
}
}