-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 973 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
{
"name": "animagic",
"version": "1.0.0",
"author": "ivanstnsk",
"license": "MIT",
"private": true,
"scripts": {
"build": "lerna run build --stream",
"dev": "concurrently --kill-others --names \"Shared,Server,Client\" --prefix-colors \"yellow,blue,green\" \"yarn shared:dev\" \"yarn server:dev\" \"yarn client:dev\"",
"test": "npx lerna run test --stream",
"server:dev": "cd packages/server && yarn dev",
"shared:dev": "cd packages/shared && yarn dev",
"client:dev": "cd packages/client && yarn dev"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"lerna": "^3.22.1",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.2"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}