-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.65 KB
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
{
"name": "3id-integration-app",
"version": "0.4.1",
"private": true,
"scripts": {
"build:app": "webpack --config webpack.config.js --mode=development",
"serve:ceramic": "rm -rf ./test/data && rm -rf ./ipfs && ceramic daemon --port 7777 --state-store-directory ./test/data --network inmemory",
"serve:app": "http-server -c-1 -p 30000 ./public",
"serve:3id-connect": "http-server -c-1 -p 30001 ../../public",
"test:env": "run-p build:** serve:**",
"test:run": "jest --config=./jest.config.js",
"test:integration": "CERAMIC_API=http://localhost:7777 lerna run build:test && npm run test:run"
},
"dependencies": {
"@3id/connect": "^0.4.1",
"@3id/test-utils": "^0.4.0",
"@babel/runtime": "7.17.9",
"@ceramicnetwork/3id-did-resolver": "^2.0.0",
"@ceramicnetwork/http-client": "^2.0.0",
"dids": "^3.0.0",
"key-did-resolver": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint-plugin-jest-playwright": "^0.7.1",
"expect-playwright": "^0.8.0",
"jest-playwright-preset": "^1.4.5",
"node-sass": "^6.0.0",
"playwright": "^1.18.1",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"url-loader": "^4.0.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.7.0"
}
}