-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "brookshear-machine",
"description": "A Brookshear Machine Emulator written in React and Mobx",
"author": "birjolaxew <[email protected]>",
"homepage": "https://brookshear.jfagerberg.me/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/birjolaxew/brookshear-machine"
},
"version": "1.0.0",
"private": true,
"dependencies": {
"lz-string": "^1.4.4",
"mobx": "^6.0.1",
"mobx-react": "^7.0.0",
"react": "16",
"react-dom": "16",
"sweetalert2": "^10.8.1"
},
"devDependencies": {
"@parcel/transformer-sass": "2.10.0",
"@types/lz-string": "^1.3.34",
"@types/react": "16",
"@types/react-dom": "16",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"parcel": "^2.10.0",
"prettier": "^2.1.2",
"process": "^0.11.10",
"sass": "^1.27.1",
"typescript": "^4.0.5"
},
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"tabWidth": 4
}
}