-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1000 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
{
"name": "megagrist",
"version": "0.1.0",
"description": "Grist with a shiny and awesome data engine",
"scripts": {
"setup": "yarn install && cd core && rm -f ext && ln -s ../ext ext && yarn run install:python",
"build": "cd core && yarn run build:prod",
"build-docker": "docker buildx build --load -t gristlabs/megagrist --build-context=ext=ext core",
"start": "cd core && sandbox/watch.sh",
"test": "cd core && mocha '_build/ext/test/**/*.js' ${DEBUG:+-b --no-exit} -g \"${GREP_TESTS}\" -n expose-gc"
},
"keywords": [],
"private": true,
"author": {
"name": "Grist Labs Inc.",
"email": "[email protected]"
},
"workspaces": {
"packages": ["core", "ext"],
"nohoist": [
"**/jquery",
"**/bootstrap",
"**/bootstrap-datepicker",
"**/components-jqueryui",
"**/eslint/**",
"**/typescript-eslint/**",
"**/globals/**",
"**/@eslint/js/**"
]
},
"devDependencies": {
"typescript": "4.7.4"
}
}