-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
41 lines (41 loc) · 1.05 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": "hot-swap-bot",
"version": "0.0.1",
"description": "",
"scripts": {
"client:dev": "parcel src/client/index.html --log-level 4 --no-cache",
"server:dev": "ts-node-dev --respawn src/app.ts --lib",
"test": "mocha -r ts-node/register 'tests/**/*.ts'"
},
"dependencies": {
"axios": "^0.21.3",
"chalk": "^4.1.2",
"components": "^0.1.0",
"ethers": "^5.4.6",
"express": "^4.17.1",
"line-awesome": "^1.3.0",
"vue": "^2.6.14",
"vue-hot-reload-api": "^2.3.4",
"vuex": "^3.6.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chalk": "^2.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@types/sinon": "^10.0.2",
"@vue/component-compiler-utils": "^3.2.2",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"parcel": "1.12.3",
"sass": "^1.39.0",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2",
"vue-template-compiler": "^2.6.14"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
}
}