-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 989 Bytes
/
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
{
"name": "voices-to-emotions",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"test": "lerna run test",
"format": "prettier --write \"./packages/**/*.{ts,tsx,js,jsx,json,md,mdx,css,scss}\"",
"lint": "eslint \"./packages/**/*.{ts,tsx,js,jsx}\" --fix",
"build": "lerna run build",
"clean": "lerna run clean && lerna clean -y && rm -rf node_modules",
"lerna-publish": "lerna publish",
"start": "now dev",
"typecheck": "lerna run typecheck"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/react": "^16.8.23",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"lerna": "^3.14.1",
"prettier": "^1.18.2"
},
"dependencies": {
"typescript": "^3.5.3"
}
}