-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "near-chess",
"description": "Shows example of how to implement on-chain chess game and deploy to GitHub pages",
"version": "0.0.1",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "node asconfig.js",
"build:web": "parcel build src/index.html --public-url ./",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"deploy:pages": "gh-pages -d dist/",
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build:contract && npm run dev:deploy:contract",
"start": "CONTRACT_NAME=$(cat neardev/dev-account) parcel src/index.html",
"dev": "nodemon --watch assembly -e ts --exec 'npm run start'",
"test": "asp && npm run build:contract && jest test",
"asp": "asp --verbose"
},
"devDependencies": {
"assemblyscript": "^0.9.4",
"gh-pages": "^2.0.1",
"gulp": "^4.0.2",
"jest": "^22.4.4",
"jest-environment-node": "^24.5.0",
"near-sdk-as": "^0.1.2",
"near-shell": "^0.20.1",
"nodemon": "^2.0.2",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"nearlib": "^0.20.0",
"regenerator-runtime": "^0.13.3"
},
"jest": {
"testEnvironment": "near-shell/test_environment",
"testPathIgnorePatterns": [
"<rootDir>/assembly/",
"<rootDir>/node_modules/"
]
}
}