-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 849 Bytes
/
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
{
"name": "microbes",
"version": "1.0.0",
"description": "A Javascript simulation/game of Microbes.",
"main": "src/microbes.js",
"repository": "[email protected]:Neo-Oli/Microbes.git",
"author": "Oliver Schmidhauser <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"build": "webpack --mode=development",
"prod": "webpack --mode=production",
"lint": "eslint src/*.js --color --ext js --fix"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"babel-loader": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"webpack": "latest",
"webpack-cli": "latest"
},
"packageManager": "[email protected]"
}