-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "forest",
"version": "0.1.0",
"license": "MIT",
"private": true,
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.10.4",
"@isomorphic-git/lightning-fs": "^4.0.1",
"@mantine/core": "^5.3.0",
"@mantine/hooks": "^5.3.0",
"@mantine/modals": "^5.3.0",
"@tabler/icons": "^1.95.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/adm-zip": "^0.5.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@types/prettier": "^2.3.2",
"@types/ramda": "^0.27.44",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-select": "^4.0.17",
"@types/uuid": "^8.3.1",
"adm-zip": "^0.5.9",
"change-case": "^4.1.1",
"divetree-core": "link:../divetree/packages/divetree-core",
"divetree-react": "link:../divetree/packages/divetree-react",
"fs-remote": "^0.1.9",
"glob": "^8.0.3",
"prettier": "^2.3.2",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-select": "^4.3.1",
"typescript": "~4.3.5",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write .",
"check-format": "prettier --check .",
"generate-templates": "node src/logic/legacy-templates/generate-templates.js && prettier --write src/logic/legacy-templates/templates.ts",
"build-node": "tsc --build tsconfig-node.json",
"build-node-watch": "tsc --build tsconfig-node.json --watch --incremental",
"zip-demo": "zip -r public/demo.zip src tasks"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 5 chrome version",
"last 5 firefox version",
"safari >= 13"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier-plugin-organize-imports": "^2.3.4"
}
}