-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 2.43 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
{
"name": "@ibm-watson/text-to-speech-code-pattern",
"version": "0.1.0",
"proxy": "http://localhost:5000",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-secure-only": "^0.2.1",
"helmet": "^3.21.2",
"ibm-watson": "^5.2.1",
"morgan": "^1.9.1",
"use-data-api": "^1.0.1"
},
"scripts": {
"dev": "concurrently \"npm:client\" \"npm:server\"",
"client": "react-scripts start",
"server": "nodemon server.js",
"start": "node server.js",
"build": "react-scripts build",
"test": "npm run test:components && npm run test:integration",
"test:components": "cross-env CI=true react-scripts test --env=jsdom --passWithNoTests",
"test:integration": "JEST_PUPPETEER_CONFIG='test/jest-puppeteer.config.js' jest test -c test/jest.config.js"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "12.13.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",
"git add build/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@carbon/themes": "^10.9.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"carbon-components": "^10.9.0",
"carbon-components-react": "^7.9.0",
"carbon-icons": "^7.0.7",
"carbon-themes": "^1.7.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-json-tree": "^0.11.2",
"react-json-view": "^1.19.1",
"react-scripts": "3.3.0"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"nodemonConfig": {
"watch": [
"app.js",
"config/**/*.js",
"server.js"
],
"ext": "js",
"ignore": [
".git",
"node_modules",
"public",
"src",
"test"
],
"delay": 500
}
}