-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 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
46
47
48
49
{
"name": "developer",
"version": "1.0.0",
"description": "Web development environment allowing full access to files on the server from a browser.",
"main": "server.js",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"babel-loader": "^8.1.0",
"client-dev-interface": "^1.0.3",
"codemirror": "^5.52.2",
"express": "^4.17.1",
"formidable": "^1.2.2",
"mime": "^2.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"nodemon": "^2.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --config webpack.prodConfig.js && node server.js",
"dev-server": "nodemon --exec node server.js --ext js,jsx,mjs,json --ignore dist",
"dev-bundle": "webpack --config webpack.devConfig.js",
"prod-bundle": "webpack --config webpack.prodConfig.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drewads/Developer.git"
},
"author": "Drew Wadsworth",
"license": "MIT",
"bugs": {
"url": "https://github.com/drewads/Developer/issues"
},
"homepage": "https://github.com/drewads/Developer#readme"
}