-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 4.7 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "webclip-chrome-ext",
"version": "0.11.0",
"description": "",
"main": "src/content.tsx",
"scripts": {
"test": "jest",
"test:unit": "jest src --testPathIgnorePatterns=src/integration-tests",
"test:integration": "jest src/integration-tests",
"lint": "eslint ./src",
"dependencies:check": "dependency-cruiser -c .dependency-cruiser.js src",
"dependencies:graph": "npm run dependencies:graph:overview && npm run dependencies:graph:content && npm run dependencies:graph:content:page-overlay && npm run dependencies:graph:content:authorization-page && npm run dependencies:graph:options && npm run dependencies:graph:background",
"dependencies:graph:overview": "depcruise --config .dependency-cruiser.js --output-type dot --collapse 2 src | dot -T svg > documentation/dependency-graphs/overview.svg",
"dependencies:graph:content": "depcruise --config .dependency-cruiser.js --output-type dot --collapse \"^src/(domain|components|solid-client-authn-chrome-ext|api|store|assets|chrome|options)\" src/content.tsx | dot -T svg > documentation/dependency-graphs/content.svg",
"dependencies:graph:content:page-overlay": "depcruise --config .dependency-cruiser.js --output-type dot --collapse \"^src/(solid-client-authn-chrome-ext|assets|chrome|options)\" src/content/page-overlay | dot -T svg > documentation/dependency-graphs/page-overlay.svg",
"dependencies:graph:content:authorization-page": "depcruise --config .dependency-cruiser.js --output-type dot --collapse \"^src/(solid-client-authn-chrome-ext|assets|chrome|options)\" src/content/authorization-page | dot -T svg > documentation/dependency-graphs/authorization-page.svg",
"dependencies:graph:options": "depcruise --config .dependency-cruiser.js --output-type dot --collapse \"^src/(components|solid-client-authn-chrome-ext|assets|chrome|content)\" src/options.tsx | dot -T svg > documentation/dependency-graphs/options.svg",
"dependencies:graph:background": "depcruise --config .dependency-cruiser.js --output-type dot --collapse 3 src/background.ts | dot -T svg > documentation/dependency-graphs/background.svg",
"start": "NODE_ENV=development webpack --mode development --watch",
"build": "webpack",
"dev": "webpack serve --open --config webpack.dev.config.js",
"pod:up": "docker run --rm --detach --name webclip-dev-pod --publish 3000:3000 --volume ${PWD}/dev/pod:/pod solidproject/community-server --config @css:config/file.json --rootFilePath /pod",
"pod:logs": "docker logs webclip-dev-pod --follow",
"pod:down": "docker stop webclip-dev-pod"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@inrupt/solid-client-authn-browser": "^1.12.1",
"@inrupt/solid-client-authn-core": "^1.12.1",
"@inrupt/vocab-common-rdf": "^1.0.5",
"dependency-cruiser": "^11.11.0",
"events": "^3.3.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"rdf-dereference": "^2.0.0",
"rdflib": "^2.2.19",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"solid-namespace": "^0.5.2",
"url-join": "^4.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/chrome": "^0.0.180",
"@types/jest": "^27.5.2",
"@types/jest-when": "^3.5.1",
"@types/node-fetch": "^3.0.3",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/sparqljs": "^3.1.3",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"jest-when": "^3.5.1",
"jose": "^4.8.1",
"nock": "^13.2.7",
"node-fetch": "^2.6.7",
"postcss": "^8.4.14",
"postcss-loader": "^6.2.1",
"prettier": "^2.7.1",
"sparqljs": "^3.5.2",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.4",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-extension-manifest-plugin": "^0.8.0"
}
}