-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 870 Bytes
/
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
{
"name": "app",
"version": "1.0.0",
"source": "app/index.html",
"license": "GPL-3.0",
"scripts": {
"clean": "shx rm -rf app/dist .parcel-cache",
"build-dev": "parcel build ./app/index.html --public-url ./",
"build": "yarn clean && parcel build ./app/index.html",
"start": "yarn clean && parcel ./app/index.html",
"push-gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose"
},
"dependencies": {
"@project-serum/anchor": "0.20",
"@solana/spl-token": "^0.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"parcel": "^2.2.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"private": true,
"workspaces": [
"app"
]
}