-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.19 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
{
"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 security-check open:src lint:watch test:watch start-mockapi",
"open:src": "babel-node buildScripts/srcServer.js",
"security-check": "nsp check",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"test": "mocha --reporter spec 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": "npm run quickbuild",
"postbuild": "babel-node buildScripts/distServer.js",
"quickbuild": "babel-node buildSCripts/build.js"
},
"author": "Cory House",
"license": "MIT",
"dependencies": {
"npm": "^6.4.1",
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.0",
"babel-preset-latest": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"chalk": "2.4.1",
"cheerio": "1.0.0-rc.2",
"compression": "1.7.3",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"eslint": "5.4.0",
"eslint-plugin-import": "2.14.0",
"eslint-watch": "4.0.2",
"express": "4.16.3",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "3.2.0",
"jsdom": "12.0.0",
"json-schema-faker": "0.5.0-rc15",
"json-server": "0.14.0",
"localtunnel": "1.9.0",
"mini-css-extract-plugin": "^0.4.2",
"mocha": "5.2.0",
"nock": "9.6.1",
"npm-run-all": "4.1.3",
"nsp": "3.2.1",
"numeral": "2.0.6",
"open": "0.0.5",
"rimraf": "2.6.2",
"style-loader": "0.23.0",
"webpack": "4.17.1",
"webpack-dev-middleware": "3.2.0",
"webpack-hot-middleware": "2.22.3",
"webpack-md5-hash": "0.0.6"
}
}