This repository has been archived by the owner on Mar 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "magic-patatap",
"version": "1.0.0",
"description": "Play Patatap",
"private": true,
"author": {
"name": "Luis Carlin",
"email": "luiscarlin@gmail.com",
"url": "https://github.com/LuisCarlin"
},
"homepage": "https://github.com/LuisCarlin/magic-patatap",
"repository": {
"type": "git",
"url": "https://github.com/LuisCarlin/magic-patatap.git"
},
"license": "WTFPL",
"now": {
"name": "magic-patatap",
"alias": "magicpatatap"
},
"scripts": {
"start": "run-p serve watch",
"predeploy": "yarn lint && yarn format",
"now-start": "node server.js",
"build": "webpack --config webpack.prod.js",
"serve": "nodemon server.js",
"watch": "webpack -w --config webpack.dev.js",
"deploy": "now --public && now alias && now rm magic-patatap --safe --yes",
"lint": "eslint ./src --fix",
"format": "prettier --write '**/*.{js,css,md}'"
},
"dependencies": {
"express": "^4.16.3",
"howler": "^2.0.15",
"paper": "^0.11.5",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.2",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"prettier": "1.14.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"webpack-merge": "^4.1.4"
}
}