-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpackage.json
29 lines (29 loc) · 969 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
{
"name": "activities-bot",
"description": "Discord Activities bot",
"author": "Advaith Jagathesan (https://advaith.io)",
"main": "dist/worker.production.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test"
},
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"discord-api-types": "^0.20.2",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^4.4.0-beta",
"webpack": "^5.33.2",
"webpack-cli": "^3.3.12"
}
}