forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.03 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.03 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "solid-ui",
"version": "2.4.19",
"description": "UI library for writing Solid read-write-web applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-webpack && npm run build-storybook",
"build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint \"src/versionInfo.ts\" --fix",
"build-webpack": "webpack",
"watch": "npm run build-version && babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"",
"clean": "rm -rf lib",
"coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"lint": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "eslint \"src/**/*.js\" \"src/**/*.ts\" --fix",
"jest": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test": "npm run build-version && npm run lint && npm run jest",
"doc": "typedoc --out ./Documentation/api/ ./src/ --excludeInternal",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push origin main --follow-tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir ./examples/storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-ui"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"contributors": [
"Daniel Friedman <danielf@mit.edu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-ui/issues"
},
"homepage": "https://github.com/solid/solid-ui",
"dependencies": {
"escape-html": "^1.0.3",
"jss": "^10.9.0",
"jss-preset-default": "^10.9.0",
"mime-types": "^2.1.35",
"pane-registry": "^2.4.8",
"rdflib": "^2.2.19",
"solid-logic": "^1.3.15-41ec298b",
"solid-namespace": "^0.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-async-to-generator": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.8",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/html": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@testing-library/dom": "^8.12.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-loader": "^8.2.4",
"eslint": "^8.12.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"lint-staged": "^12.3.7",
"nock": "^13.2.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}