forked from saltcorn/saltcorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 845 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
37
38
39
{
"name": "saltcorn-monorepo",
"private": true,
"devDependencies": {
"jest": "^27.1.0",
"minipass": "3.1.6",
"supertest": "^4.0.2",
"typedoc": "^0.22.11",
"typescript": "^4.4.4"
},
"scripts": {
"dev": "nodemon packages/saltcorn/index.js",
"test": "jest",
"tsc": "tsc --build",
"clean": "tsc --build --clean",
"docs": "typedoc --options typedoc_cfg.json"
},
"jest": {
"testEnvironment": "node",
"projects": [
"packages/saltcorn-markup",
"packages/saltcorn-data",
"packages/saltcorn-sbadmin2"
]
},
"workspaces": [
"./packages/*"
],
"nodemonConfig": {
"verbose": true,
"ext": "js,json,css",
"ignore": [
"plugin_packages/",
"git_plugins/",
"packages/saltcorn-data/app-locales/",
"packages/server/locales/"
]
}
}