-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
32 lines (32 loc) · 977 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
31
32
{
"name": "eos-admin",
"version": "1.0.0",
"license": "MIT",
"author": "watano@qq.com",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"betdice": "ts-node src/betdice.ts"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/runtime": "^7.1.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0"
},
"dependencies": {
"@types/node": "^10.11.4",
"@types/node-fetch": "^2.1.2",
"eosjs": "^20.0.0-beta1",
"node-fetch": "^2.2.0",
"typescript": "^3.0.3"
}
}