-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "roshambot",
"description": "Totally serious Roshambo for Slack",
"main": "build/index.js",
"version": "1.0.0",
"author": "Carl Winkler",
"bugs": {
"url": "https://github.com/1000team/roshambo"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/1000team/roshambo"
},
"publishConfig": {
"//": "Do not publish",
"registry": "https://bad.registry"
},
"scripts": {
"build": "tsc",
"bundle": "webpack --config build/webpack.config.js --display-error-details",
"start": "node build/index.js",
"clean": "rimraf \"src/**/*.js\" \"src/**/*.js.map\""
},
"dependencies": {
"express": "^4.16.3",
"ratings": "^0.4.2",
"slacklib": "^3.1.2",
"vue": "^2.5.16"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^9.3.0",
"css-loader": "^0.28.11",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"ts-loader": "^4.1.0",
"typescript": "2.8.0-rc",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.12"
}
}