-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 745 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 745 Bytes
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": "react-bot",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"dependencies": {
"@babel/runtime": "^7.5.5",
"discord.js": "github:discordjs/discord.js",
"jsdom": "^15.1.1",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0"
},
"scripts": {
"build": "babel src -d lib",
"clean": "rm -Rf lib",
"start": "npm run clean && npm run build && node lib/index.js"
},
"keywords": [
"discord",
"bot",
"react",
"reactjs"
],
"author": "Yamboy1",
"license": "MIT"
}