-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 2.24 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
{
"name": "autorhythm",
"version": "1.0.0",
"description": "Phaser 3.14.0 Open Jam 2018 project",
"author": "Christian Holt ([email protected]), Øyvind Nordli ([email protected])",
"main": "src/index.js",
"scripts": {
"default:start": "npm run clean && webpack --mode development",
"start": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack --mode production",
"clean": "rimraf dist"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"homepage": "https://garlov.itch.io/auto-rhythm",
"repository": {
"type": "git",
"url": "git+https://github.com/Garlov/AutoRhythm.git"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.5.2",
"core-js": "^2.5.7",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"html-webpack-template": "^6.1.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.14.1",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.3.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"stats-js": "^1.0.0-alpha1",
"style-loader": "^0.21.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"dat.gui": "^0.7.2",
"dsp.js": "^1.0.1",
"immutable": "^3.8.2",
"mersenne-twister": "^1.1.0",
"phaser": "^3.14.0",
"stats-js": "^1.0.0-alpha1"
}
}