-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "voice-web",
"version": "1.0.0",
"license": "MPL-2.0",
"repository": "mozilla/voice-web",
"private": true,
"dependencies": {
"concurrently": "^4.1.1",
"dotenv": "^8.1.0",
"fluent-syntax": "^0.13.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"typescript": "3.5.2"
},
"devDependencies": {
"husky": "^3.0.0",
"pretty-quick": "^1.11.1"
},
"workspaces": [
"common",
"server",
"web"
],
"engines": {
"node": ">=10"
},
"resolutions": {
"event-stream": "3.3.4",
"@types/react": "16.8.19"
},
"scripts": {
"build": "concurrently \"cd server && yarn build\" \"cd web/ && yarn build\"",
"import-locales": "node scripts/import-locales",
"lint": "prettier **/*.ts **/*.tsx",
"prettier": "yarn lint --write",
"start": "concurrently -p \"[{name}]\" -n \"BE,FE\" -c \"bgBlue.bold,bgMagenta.bold\" \"cd server && yarn start\" \"cd web && yarn dev\"",
"start:prod": "node server/js/server.js",
"test": "concurrently --kill-others-on-fail \"cd web && yarn test\" \"cd server && yarn test\"",
"mturk": "node scripts/mturk.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}