-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
87 lines (87 loc) · 2.51 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
{
"name": "@dialogue/covid-19",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"apisauce": "^1.1.1",
"bowser": "^2.9.0",
"change-case": "^4.1.1",
"i18next": "^19.3.2",
"i18next-browser-languagedetector": "^4.0.2",
"json-rules-engine": "^5.0.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-html-parser": "^1.2.12",
"query-string": "^6.12.0",
"rasa-webchat": "^0.9.1",
"react": "^16.13.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.13.0",
"react-i18next": "^11.3.3",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2",
"react-simple-chatbot": "^0.6.1",
"selectn": "^1.1.2",
"strip-indent": "^3.0.0",
"styled-components": "^5.0.1",
"typescript": "^3.7.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/hoist-non-react-statics": "3.3.0",
"@types/i18next": "^13.0.0",
"@types/i18next-browser-languagedetector": "^3.0.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.29",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "7.1.16",
"@types/react-router": "5.1.15",
"@types/react-router-dom": "^5.1.3",
"@types/segment-analytics": "0.0.32",
"@types/styled-components": "^5.0.1",
"glob": "^7.1.6",
"husky": "^4.2.3",
"md5-file": "^4.0.0",
"prettier": "^1.19.1",
"react-scripts": "3.4.0"
},
"scripts": {
"start": "react-scripts start",
"start:prod": "sh -ac '. ~/project/.env.production; npm start'",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"build:dev": "sh -ac '. ~/project/.env.development; npm run build'",
"build:content-manifest": "node ./scripts/build_content_manifest.js",
"pretest": "npm run build:content-manifest",
"prestart": "npm run build:content-manifest",
"prebuild": "npm run build:content-manifest",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "prettier --check \"src/**/*\"",
"lint:fix": "prettier --write \"src/**/*\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}