forked from Mavenomics/MavenWorks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 KB
/
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": "project-metapackage",
"main": "index.js",
"repository": "git@github.com:Mavenomics/MavenWorks.git",
"author": "Mavenomics, Inc",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "yarn workspaces run clean",
"build": "yarn workspace @mavenomics/metapackage run build && yarn workspaces run build:ci",
"bundle": "yarn workspace @mavenomics/mql-worker run bundle:ci && yarn workspace @mavenomics/standalone run bundle:ci",
"serve": "yarn workspace @mavenomics/standalone run serve",
"registry": "yarn verdaccio --config ./bin/verdaccio-conf.yml",
"test": "jest",
"lint": "tslint --project ./base.tslint.json"
},
"devDependencies": {
"@types/jest": "~26.0.19",
"@types/papaparse": "^4.5.9",
"jest": "~26.6.3",
"less": "~4.0.0",
"rimraf": "^2.6.2",
"ts-jest": "~26.4.4",
"tslint": "^5.14.0",
"typedoc": "^0.19.2",
"typescript": "~4.1.3",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.2.1"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}