-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sqrl-monorepo",
"private": true,
"homepage": "https://sqrl-lang.github.io/sqrl",
"license": "Apache-2.0",
"repository": "https://github.com/sqrl-lang/sqrl",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@types/ioredis": "^4.0.13",
"@types/jest": "^29.2.3",
"@types/jsonpath": "^0.2.0",
"@types/node": "^18.0.0",
"@types/pegjs": "^0.10.1",
"@types/prettier": "^1.18.2",
"coveralls": "^3.0.6",
"glob": "^7.1.6",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"lerna": "^6.0.3",
"pegjs": "^0.10.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-pegjs": "^0.2.6",
"typedoc": "^0.23.20",
"typescript": "~4.8.4"
},
"workspaces": [
"examples/sqrl-example-functions",
"packages/*",
"tools/wikipedia-diff-stream",
"website",
"websqrl"
],
"manypkg": {
"defaultBranch": "main"
},
"scripts": {
"clean": "lerna run clean",
"deploy-website": "lerna run docs; npm run deploy-website-source",
"deploy-website-source": "./scripts/hexo-website-pull-request",
"format": "prettier --write .",
"serve-website": "lerna run docs; (cd website && npm run serve-website)",
"start": "npm -w websqrl run dev",
"test": "jest",
"test:integration": "jest --config=jest.integration.config.js",
"coverage": "jest --coverage",
"build": "tsc --build --verbose",
"generate-parser": "lerna run --parallel generate-parser",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"watch:test:integration": "npm run test:integration -- --watch"
}
}