-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.14 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
{
"name": "solid-comment",
"version": "0.9.2",
"description": "",
"main": "dist/solid-comment.js",
"homepage": "https://github.com/janschill/solid-comment",
"module": "dist/solid-comment.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"start": "webpack serve --open --config webpack.dev.js",
"json-server": "json-server db.json -p 3001",
"test": "jest"
},
"keywords": [
"solid",
"comment",
"indico"
],
"author": "Jan Schill",
"license": "MIT",
"dependencies": {
"@inrupt/solid-client": "^1.6.1",
"@inrupt/solid-client-authn-browser": "^1.8.0",
"@inrupt/vocab-common-rdf": "^0.7.2",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.isnil": "^4.0.0",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.kebabcase": "^4.1.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js"
}
}
}