forked from nlile/foodadvisor-turbo-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 852 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
36
{
"name": "turbo-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"seed": "turbo run seed",
"dev": "turbo run dev --parallel & turbo run develop",
"dev:docker": "docker-compose up -d",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint-config-custom": "latest",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"npm": "6.14.13",
"node": "14.19.3"
},
"packageManager": "[email protected]",
"dependencies": {
"npm": "6.14.13"
}
}