-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript development environment",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "nsp check",
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"author": "Hiloga",
"license": "MIT",
"dependencies": {
"whatwg-fetch": "3.6.2"
},
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.13.8",
"@babel/node": "^7.13.0",
"@babel/preset-env": "7.13.8",
"@babel/register": "7.13.8",
"babel-loader": "8.2.2",
"chai": "4.3.0",
"chalk": "4.1.0",
"cheerio": "1.0.0-rc.5",
"compression": "1.7.4",
"cross-env": "7.0.3",
"css-loader": "5.1.0",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-watch": "7.0.0",
"express": "4.17.1",
"faker": "^5.4.0",
"html-webpack-plugin": "5.2.0",
"jsdom": "^16.4.0",
"json-schema-faker": "0.5.0-rcv.27",
"json-server": "0.16.3",
"localtunnel": "2.0.1",
"mini-css-extract-plugin": "^1.3.9",
"mocha": "8.3.0",
"npm-run-all": "4.1.5",
"numeral": "2.0.6",
"open": "7.4.2",
"rimraf": "3.0.2",
"style-loader": "2.0.0",
"surge": "0.21.7",
"webpack": "5.24.2",
"webpack-dev-middleware": "4.1.0"
}
}