-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jsdev-setup",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"clean": "rimraf dist",
"build": "babel lib -d dist",
"prestart": "babel-node lib/startMessage.js",
"serve": "babel-node lib/server.js",
"start": "run-p lint:watch test:watch start-mockapi serve",
"lint": "esw --color webpack.config.* src lib",
"lint:watch": "npm run lint -- --watch",
"localtunnel": "lt --port 3000 --subdomain manny",
"share": "run-p start localtunnel",
"test": "mocha \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node lib/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "json-server --watch src/api/db.json --port 3001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOjeah/jsdev-setup.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOjeah/jsdev-setup/issues"
},
"homepage": "https://github.com/EOjeah/jsdev-setup#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-loader": "8.1.0",
"babel-preset-latest": "6.24.1",
"chai": "^4.2.0",
"chalk": "4.1.0",
"cheerio": "1.0.0-rc.3",
"compression": "1.7.4",
"cross-env": "7.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "2.22.1",
"eslint-watch": "7.0.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "4.5.0",
"ignore-styles": "^5.0.1",
"jsdom": "16.4.0",
"json-schema-faker": "^0.5.0-rcv.29",
"json-server": "0.16.2",
"localtunnel": "2.0.0",
"mocha": "8.1.3",
"nock": "13.0.4",
"nodemon": "^2.0.4",
"npm-run-all": "4.1.5",
"numeral": "2.0.6",
"open": "7.3.0",
"rimraf": "3.0.2",
"style-loader": "^2.0.0",
"surge": "0.21.6",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-md5-hash": "0.0.6"
},
"dependencies": {
"lodash": "^4.17.20",
"whatwg-fetch": "^3.4.1"
}
}