-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.86 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
{
"name": "pluralsight-js-dev-env",
"version": "1.0.0",
"description": "Javascript development environment form pluralsight course with Cory house",
"main": "index.js",
"scripts": {
"prestart": "babel-node build.scripts/start.message.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch start-mock-api",
"open:src": "babel-node build.scripts/src.server.js",
"localtunnel": "lt -h \"http://serverless.social\" -p 3000 ",
"lint:watch": "npm run lint -- --watch",
"lint": "esw webpack.config.* src build.scripts --color",
"share": "npm-run-all --parallel open:src localtunnel",
"test": "mocha --reporter progress build.scripts/test.setup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node build.scripts/generate.mock.data.js",
"prestart-mock-api": "npm run generate-mock-data",
"start-mock-api": "json-server --watch src/api/db.json --port 3001",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist test lint",
"build": "babel-node build.scripts/build.js",
"postbuild": "babel-node build.scripts/dist.server.js",
"deploy": "surge ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adkif/pluralsight-js-dev-env.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adkif/pluralsight-js-dev-env/issues"
},
"homepage": "https://github.com/adkif/pluralsight-js-dev-env#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"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": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-watch": "^7.0.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"faker": "^4.1.0",
"html-webpack-plugin": "^4.3.0",
"jsdom": "^16.2.2",
"json-schema-faker": "^0.5.0-rcv.24",
"json-server": "^0.16.1",
"localtunnel": "^2.0.0",
"mocha": "^8.0.1",
"nock": "^13.0.2",
"npm-run-all": "^4.1.5",
"numeral": "^2.0.6",
"open": "^7.0.4",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"surge": "^0.21.5",
"webpack": "^4.43.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-md5-hash": "0.0.6",
"whatwg-fetch": "^3.2.0"
},
"devDependencies": {
"uglifyjs-webpack-plugin": "^2.2.0"
}
}