This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.34 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": "@sqlstreamstore/browser",
"description": "Sql Stream Store User Interface",
"repository": "https://github.com/SQLStreamStore/sql-stream-store-browser.git",
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts-ts start",
"build": "yarn lint && react-scripts-ts build",
"build:dist": "rm -rf dist && yarn lint && tsc --project tsconfig.publish.json && cp src/index.d.ts ./dist",
"eject": "react-scripts-ts eject",
"format": "prettier --write \"src/**/*.js\" \"src/**/*.ts\" \"src/**/*.tsx\" && tslint --project ./ --fix",
"lint": "prettier --list-different \"src/**/*.js\" \"src/**/*.ts\" \"src/**/*.tsx\" && tslint --project ./"
},
"homepage": ".",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"src",
"*.json",
"yarn.lock",
"public/*"
],
"private": false,
"devDependencies": {
"@types/array.prototype.flatmap": "^1.2.0",
"@types/base16": "^1.0.1",
"@types/classnames": "^2.2.7",
"@types/history": "^4.7.2",
"@types/json-schema": "^7.0.1",
"@types/jss": "^9.5.7",
"@types/prettier": "^1.13.2",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.9",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/react-transition-group": "^2.0.14",
"@types/remarkable": "^1.7.2",
"@types/uuid": "^3.4.4",
"babel-plugin-module-resolver": "3.1.3",
"prettier": "1.15.2",
"react-scripts-ts": "3.1.0",
"source-map-explorer": "1.6.0",
"tslint-config-prettier": "1.17.0",
"tslint-immutable": "5.0.0",
"tslint-react": "3.6.0",
"typescript": "3.2.4",
"typesync": "0.4.1"
},
"dependencies": {
"@material-ui/core": "3.9.0",
"@material-ui/icons": "3.0.1",
"array.prototype.flatmap": "1.2.1",
"base16": "1.0.0",
"classnames": "2.2.6",
"history": "4.7.2",
"inflector-js": "1.0.1",
"invert-color": "2.0.0",
"json-schema": "0.2.3",
"jss": "9.8.7",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-json-view": "1.19.1",
"react-remarkable": "1.1.3",
"react-schema-form": "0.6.2",
"rxjs": "5.4.3",
"uri-template": "1.0.1",
"uuid": "3.3.2"
},
"author": "thefringeninja",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}