-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.32 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
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript development environment Pluralsight course by Cory House",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch start-mockapi",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel open:src localtunnel",
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node buildScripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "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 buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js",
"deploy": "surge ./dist"
},
"author": "Khwilo Kabaka",
"repository": {
"type": "git",
"url": "https://github.com/khwilo/pluralsight-js-dev-env"
},
"license": "MIT",
"dependencies": {
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/register": "^7.4.4",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"chalk": "2.4.2",
"cheerio": "0.22.0",
"compression": "^1.7.4",
"cross-env": "5.2.0",
"css-loader": "^3.0.0",
"eslint": "5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-watch": "^5.1.2",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"faker": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "15.1.1",
"json-schema-faker": "^0.4.7",
"json-server": "^0.15.0",
"localtunnel": "^1.9.2",
"mocha": "^6.1.4",
"npm-run-all": "4.1.5",
"numeral": "2.0.6",
"open": "^6.3.0",
"rimraf": "2.6.3",
"style-loader": "0.23.1",
"surge": "0.21.3",
"webpack": "^4.35.0",
"webpack-dev-middleware": "3.7.0",
"webpack-hot-middleware": "2.25.0",
"webpack-md5-hash": "0.0.6"
}
}