-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
42
43
44
45
46
{
"name": "prbot",
"version": "0.1.1",
"repository": "https://github.com/blackcowmoo/prbot.git",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir build --copy-files --ignore \"**/*.test.ts\" --extensions \".ts,.tsx\"",
"build:test": "babel src --out-dir build --copy-files --extensions \".ts,.tsx\"",
"start": "node ./build/index.js",
"start:dev": "NODE_ENV=test nodemon -e ts,tsx --legacy-watch src/* --exec \"babel-node --config-file ./.babelrc --extensions '.ts,.tsx' ./src/index.ts\"",
"tslint": "tslint --project ./",
"test": "NODE_ENV=test mocha -r ./mocha.js --timeout 5000 ./src/test/**/*.test.ts",
"pretest:js": "npm run build:test",
"test:js": "NODE_ENV=test mocha ./build/test/**/*.test.js"
},
"dependencies": {
"axios": "^0.21.2",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/chai": "^4.2.8",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/http-errors": "^1.6.3",
"@types/mocha": "^7.0.1",
"@types/morgan": "^1.7.37",
"@types/node": "^13.7.0",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"tslint": "^6.1.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.5"
}
}