-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
67 lines (67 loc) · 2.63 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
58
59
60
61
62
63
64
65
66
67
{
"name": "ssx",
"version": "2.0.0",
"repository": "ssh://[email protected]:spruceid/ssx.git",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"postinstall": "npm run clean && npm run build:packages",
"build": "lerna run build",
"build:packages": "lerna run --ignore \"ssx-test-*\" build",
"build:examples": "lerna run --scope \"ssx-test-*\" build",
"clean": "lerna run clean",
"reset": "rm -rf node_modules packages/**/dist packages/**/node_modules examples/**/dist examples/**/node_modules examples/**/.next",
"test": "jest --config ./.jest.config.ts --runInBand --detectOpenHandles --forceExit",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"documentation": "lerna run doc && yarn documentation:reference",
"documentation:reference": "node scripts/build-docs.js",
"bootstrap": "lerna bootstrap",
"examples": "concurrently \"yarn test-app start\" \"yarn express-api start\"",
"graph": "nx graph",
"gnosis": "yarn workspace @spruceid/ssx-gnosis-extension",
"sdk": "yarn workspace @spruceid/ssx",
"core": "yarn workspace @spruceid/ssx-core",
"server": "yarn workspace @spruceid/ssx-server",
"test-app": "yarn workspace ssx-test-app",
"next-app": "yarn workspace ssx-test-next",
"svelte-app": "yarn workspace ssx-test-sveltekit",
"express-api": "yarn workspace ssx-test-express-api",
"start:test-app": "yarn test-app start",
"start:test-api": "yarn express-api start",
"prepare-release": "changeset version",
"publish-packages": "yarn reset && yarn install && yarn build && changeset publish",
"test:e2e": "start-test 'yarn start:test-app' 3000 'SSX_SIGNING_KEY=test_key yarn start:test-api' 3001 'SECRET_WORDS=\"test test test test test test test test test test test junk\" synpress run'"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@synthetixio/synpress": "^3.7.2-beta.10",
"@types/jest": "^29.5.12",
"concurrently": "^8.2.2",
"cypress": "^12.17.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eth-testing": "^1.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^7.4.2",
"nx": "^16.10.0",
"rimraf": "^5.0.5",
"start-server-and-test": "^2.0.3",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"yarn": "^1.22.21"
},
"resolutions": {
"html-webpack-plugin": "^5.0.0"
},
"packageManager": "[email protected]"
}