-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "textdb",
"version": "1.0.0",
"description": "A graphical interface for manipulating structured text data",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tauri": "tauri",
"dev": "parcel serve ./app/index.html",
"build": "parcel build app/index.html",
"start": "tauri dev"
},
"author": "Alex Krolick",
"license": "GPL",
"dependencies": {
"@primer/octicons-react": "^12.1.0",
"@xstate/react": "^1.3.1",
"lodash": "^4.17.21",
"preact": "^10.5.12",
"tauri": "^0.14.1",
"xstate": "^4.16.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-react": "^7.12.13",
"babel-core": "^6.26.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-react-app": "^10.0.0",
"bulma": "^0.9.2",
"cypress": "^6.6.0",
"parcel": "^2.0.0-beta.1",
"prettier": "^2.2.1",
"sass": "^1.32.8"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat"
},
"browserslist": [
"last 1 Edge version",
"last 1 Safari version",
"last 2 Chrome versions"
]
}