-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "crypto-coaster",
"version": "1.0.0",
"description": "A quick little static web page that shows the famous Bitcoin mascot on his coaster ride of the price fluctuations.",
"main": "./src/js/app.js",
"dependencies": {
"jquery": "^3.3.1",
"socket.io-client": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-loader": "^8.0.0-beta.0",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"node-sass": "^4.14.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "webpack",
"prod": "webpack --mode=production",
"dev": "webpack-dev-server --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarveyD/crypto-coaster.git"
},
"keywords": [
"crypto",
"coaster"
],
"author": "Harvey Delaney",
"license": "ISC",
"bugs": {
"url": "https://github.com/HarveyD/crypto-coaster/issues"
},
"homepage": "https://github.com/HarveyD/crypto-coaster#readme"
}