-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 770 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 770 Bytes
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": "concord",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf packages/**/dist && rimraf packages/**/*.tsbuildinfo",
"lint": "prettier --write packages/**/*.{js,ts}",
"concord": "yarn workspace @edixon/concord",
"testbot": "yarn workspace testbot",
"dev": "nodemon --config"
},
"nodemonConfig": {
"ext": ".ts,.js,.env",
"watch": [
"packages/*"
],
"verbose": false,
"exec": "yarn concord dev && yarn testbot start",
"ignore": [
"node_modules/",
"dist/"
]
},
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=16.6.0",
"yarn": "~1.22.0"
}
}