-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.28 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
{
"author": "Sarah Lim <[email protected]>",
"name": "raidtomi",
"version": "0.0.1",
"repository": "https://github.com/sliminality/raidtomi",
"license": "Apache-2.0/MIT",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url='./' --out-dir='docs'",
"deploy": "git checkout master && git branch -df gh-pages && git checkout -b gh-pages && npm run build && npm run cname && git add . && git commit -m 'Deploy' && git push -f && git checkout master",
"cname": "echo 'raidtomi.com' > 'docs/CNAME'",
"typecheck": "tsc --noEmit --watch"
},
"bin": {
"create-rust-parcel": ".bin/create-rust-parcel.js"
},
"devDependencies": {
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-plugin-react": "^7.20.6",
"parcel-bundler": "^1.12.4",
"parcel-plugin-wasm.rs": "^1.2.16",
"prettier": "^2.2.1",
"typescript": "^4.0.2"
},
"dependencies": {
"aphrodite": "^2.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}