-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "emoji-chatbot",
"version": "1.0.0",
"description": "A chatbot that translates words to emojis.",
"dependencies": {
"emojilib": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"check": "npm run check:format && npm run check:types",
"check:format": "prettier --check \"./**/*.{html,ts,tsx,json,yml,md}\"",
"check:types": "tsc",
"check:types:watch": "npm run check:types -- --watch",
"test": "react-scripts test",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/index.tsx",
"!src/moji-translate/*"
],
"displayName": "Emoji Chatbot",
"resetMocks": true,
"resetModules": true,
"restoreMocks": true
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"gh-pages": "^4.0.0",
"prettier": "^2.7.1",
"react-scripts": "^5.0.1",
"typescript": "^4.8.2"
},
"repository": "https://github.com/joelgeorgev/emoji-chatbot",
"keywords": [
"typescript",
"React",
"reactjs",
"redux",
"react-redux",
"redux-saga",
"emoji",
"chatbot",
"translate"
],
"author": "Joel George V",
"homepage": "https://emojibot.joelgeorgev.dev",
"license": "MIT"
}