This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
106 lines (106 loc) · 2.57 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
103
104
105
106
{
"name": "@ibm-watson/speech-to-text-code-pattern",
"version": "0.1.0",
"proxy": "http://localhost:5000",
"private": true,
"dependencies": {
"@craco/craco": "^7.0.0",
"@types/react": "^18.0.12",
"body-parser": "^1.20.1",
"buffer": "^6.0.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"es6-promise": "^4.2.8",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-secure-only": "^0.2.1",
"helmet": "^6.0.1",
"husky": "^8.0.3",
"ibm-watson": "^7.1.2",
"isomorphic-fetch": "^3.0.0",
"lint-staged": "^13.1.2",
"morgan": "^1.10.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"vcap_services": "^0.7.1",
"watson-speech": "^0.41.0"
},
"scripts": {
"dev": "concurrently \"npm:client\" \"npm:server\"",
"client": "craco start",
"server": "nodemon server.js",
"start": "node server.js",
"build": "INLINE_RUNTIME_CHUNK=false craco build",
"test": "npm run test:components && npm run test:integration",
"test:components": "cross-env CI=true craco test --env=jsdom --passWithNoTests",
"test:integration": "JEST_PUPPETEER_CONFIG='test/jest-puppeteer.config.js' jest test -c test/jest.config.js",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "^18.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"./**/*.{js,scss,html,png,yaml,yml}": [
"npm run build"
]
},
"devDependencies": {
"@carbon/react": "^1.22.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"jest": "29.4.2",
"jest-puppeteer": "^7.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"puppeteer": "^19",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-tree": "^0.18.0",
"react-json-view": "^1.21.3",
"react-scripts": "^5.0.1",
"sass": "^1.58.0",
"webpack": "^5.75.0"
},
"overrides": {
"@craco/craco": {
"react-scripts": "5.0.1"
}
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"nodemonConfig": {
"watch": [
"app.js",
"config/**/*.js",
"server.js"
],
"ext": "js",
"ignore": [
".git",
"node_modules",
"public",
"src",
"test"
],
"delay": 500
}
}