-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-typescript-webpack-starter",
"version": "1.0.0",
"description": "",
"main": "dist/bundle.js",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"scripts": {
"start": "node ./dist/bundle.js",
"dev": "npm-run-all --parallel watch:server watch:build",
"watch:server": "nodemon \"./dist/bundle.js\" --watch \"./dist\" ",
"watch:build": "webpack --watch",
"build": "webpack",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/luxon": "^1.11.1",
"@types/mongodb": "^3.1.21",
"@types/node": "^13.7.0",
"@types/node-schedule": "^1.2.3",
"dotenv": "^8.2.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^25.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.3.3333",
"webpack": "^4.29.6"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.3.21",
"discord.js": "^11.4.2",
"luxon": "^1.11.4",
"mongodb": "^3.1.13",
"mongoose": "^5.8.11",
"node-schedule": "^1.3.2",
"webpack-cli": "^3.2.3"
}
}