File tree Expand file tree Collapse file tree 3 files changed +565
-16
lines changed Expand file tree Collapse file tree 3 files changed +565
-16
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "ignore" : [" **/*.test.ts" , " node_modules" ],
3
+ "watch" : [" src" ],
4
+ "exec" : " yarn ts-run" ,
5
+ "ext" : " ts"
6
+ }
Original file line number Diff line number Diff line change 8
8
"node" : " >=16.6"
9
9
},
10
10
"scripts" : {
11
- "dev" : " PORT=4000 ts-node src/server.ts" ,
11
+ "dev" : " nodemon" ,
12
+ "ts-run" : " PORT=4000 ts-node src/server.ts" ,
12
13
"build" : " tsc" ,
13
14
"start" : " PORT=4000 NODE_PATH=./dist/src NODE_ENV=production node dist/src/server.js" ,
14
15
"test" : " jest --no-watchman" ,
15
16
"lint-format" : " prettier -c ./src/**/*.{ts,tsx}" ,
16
17
"fix-format" : " prettier -w ./src/**/*.{ts,tsx}"
17
18
},
18
19
"dependencies" : {
20
+ "@discordjs/builders" : " ^0.8.1" ,
19
21
"axios" : " ^0.23.0" ,
20
- "ts-node" : " ^10.4.0" ,
21
22
"discord.js" : " ^13.2.0" ,
22
23
"dotenv" : " ^10.0.0" ,
23
- "express" : " ^4.17.1"
24
+ "express" : " ^4.17.1" ,
25
+ "ts-node" : " ^10.4.0"
24
26
},
25
27
"devDependencies" : {
26
28
"@babel/core" : " ^7.15.8" ,
33
35
"@types/node" : " ^16.11.4" ,
34
36
"babel-jest" : " ^27.3.1" ,
35
37
"jest" : " ^27.2.5" ,
38
+ "nodemon" : " ^2.0.14" ,
36
39
"prettier" : " ^2.4.1" ,
37
40
"tsconfig-paths" : " ^3.11.0" ,
38
41
"typescript" : " 4.4.4"
You can’t perform that action at this time.
0 commit comments