-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "ssebot",
"version": "0.0.1",
"scripts": {
"test": "npm run build && mocha --exit 'build/tests/**/*.spec.js'",
"start": "npm run build && node build/src/index.js",
"build": "rm -rf build && tsc -p . && npm run copy_src && npm run copy_tests",
"copy_src": "cpy '**/*' '!**/*.ts' ../build/src --cwd=src/ --no-overwrite --parents",
"copy_tests": "cpy '**/*' '!**/*.ts' ../build/tests --cwd=tests/ --no-overwrite --parents",
"build_watch": "tsc --watch",
"ts_start": "ts-node src/index.ts",
"ts_test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"dependencies": {
"@slack/bolt": "^2.2.3",
"express": "^4.17.1",
"superagent": "^6.0.0"
},
"devDependencies": {
"@types/mocha": "^8.0.2",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"cpy-cli": "^3.1.0",
"dotenv": "^8.2.0",
"mocha": "^8.1.1",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"superagent-mock": "^3.7.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
}
}