This repository was archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.25 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript development environment inspired by Pluralsight course by Cory House",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch open:url start-mockapi",
"open:url": "start http://localhost:3000/",
"open:src": "babel-node buildScripts/srcServer.js",
"localtunnel": "lt --port 3000 --subdomain es-js-dev",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"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.js",
"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": "Eugene Suei",
"license": "MIT",
"dependencies": {
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-loader": "^7.1.5",
"babel-preset-latest": "6.16.0",
"babel-register": "6.16.3",
"chai": "3.5.0",
"chalk": "^2.4.1",
"cheerio": "0.22.0",
"compression": "^1.7.3",
"cross-env": "3.1.3",
"css-loader": "0.25.0",
"eslint": "3.8.1",
"eslint-plugin-import": "^2.13.0",
"eslint-watch": "2.1.14",
"express": "^4.16.3",
"html-webpack-plugin": "^3.2.0",
"jsdom": "9.8.0",
"json-schema-faker": "^0.5.0-rc15",
"json-server": "^0.14.0",
"localtunnel": "1.9.0",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^4.1.0",
"nock": "9.4.4",
"npm-run-all": "3.1.1",
"numeral": "^2.0.6",
"rimraf": "2.5.4",
"style-loader": "0.13.1",
"surge": "^0.20.1",
"webpack": "^4.16.3",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "2.22.3",
"webpack-md5-hash": "0.0.6"
}
}