-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.83 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
96
97
98
99
100
{
"name": "crdt-spreadsheet",
"version": "0.2.0",
"license": "MIT",
"author": "Ilyas Toumlilt <[email protected]>",
"description": "CRDT Demo app. A master app that puts together the Spreadsheet and Notepad.",
"homepage": "/",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"coverage": "CI=true npm test -- --coverage",
"lint": "eslint .",
"eject": "react-scripts eject",
"prettier": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:itoumlilt/CRDT-Spreasheet.git"
},
"bugs": {
"url": "https://[email protected]:itoumlilt/CRDT-Spreasheet/-/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"concordant-crdtlib": "git+ssh://[email protected]/concordant/software/concordant-crdtlib.git",
"concordant-service": "git+ssh://[email protected]/concordant/software/c-service.git"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.159",
"@types/pouchdb": "^6.4.0",
"@types/react-redux": "^7.1.9",
"@types/react-resizable": "^1.7.2",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"acorn": "^7.4.0",
"classnames": "^2.2.6",
"clsx": "^1.1.1",
"delta-crdts": "^0.10.3",
"delta-crdts-msgpack-codec": "^0.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"jodit-react": "^1.0.59",
"lint-staged": "^10.3.0",
"lodash": "^4.17.20",
"material-table": "^1.68.1",
"pouchdb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"react-spreadsheet": "git+ssh://[email protected]/concordant/software/react-spreadsheet.git",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7",
"uuid": "^3.3.3"
},
"jest": {
"coverageReporters": [
"text",
"json",
"html"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,html,css,md,json,yml}": "prettier --write"
}
}