-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.92 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
{
"name": "@dpc-sdp/ripple-lib-starter",
"type": "module",
"version": "0.0.0",
"repository": "https://github.com/dpc-sdp/ripple-lib-starter",
"main": "./nuxt.config.ts",
"exports": {
".": "./nuxt.config.ts",
"./mapping": "./mapping/index.ts",
"./types": "./types.ts"
},
"scripts": {
"build": "nuxi build .playground",
"dev": "nuxi prepare & nuxi dev .playground",
"dev:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 API_PORT=3001 npm run dev",
"start": "nuxi start .playground",
"start:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 API_PORT=3001 nuxi start .playground",
"mock": "node mockserver",
"preview": "nuxi preview .playground",
"lint": "eslint .",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:unit": "jest --colors --runInBand --passWithNoTests",
"test:integration": "NUXT_PUBLIC_TIDE_SITE=TEST_SITE NUXT_PUBLIC_TIDE_BASE_URL=https://test.base.url/ start-test dev:mock tcp:3000 'cy:open'",
"test:integration-ci": "NUXT_PUBLIC_TIDE_SITE=TEST_SITE NUXT_PUBLIC_TIDE_BASE_URL=https://test.base.url/ start-test start:mock tcp:3000 'cy:run'"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@dpc-sdp/eslint-config-ripple": "2.19.0",
"@dpc-sdp/nuxt-ripple": "2.19.0",
"@dpc-sdp/nuxt-ripple-analytics": "2.19.0",
"@dpc-sdp/nuxt-ripple-preview": "2.19.0",
"@dpc-sdp/ripple-test-utils": "2.19.0",
"@dpc-sdp/ripple-tide-api": "2.19.0",
"@dpc-sdp/ripple-sdp-core": "2.19.0",
"cypress": "13.15.1",
"eslint": "^8.36.0",
"jest-environment-jsdom": "^29.5.0",
"nuxt": "3.11.2",
"start-server-and-test": "^2.0.5",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"engines": {
"node": "^20.0.0",
"npm": "^9.5.1 || ^10.2.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}