-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2 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
{
"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",
"open:src": "babel-node BuildScripts/srcServer.js",
"security-check": "nsp check",
"localtunnel": "lt --port=3000",
"lint": "esw webpack.config.* src BuildScripts",
"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"
},
"author": "Cory House",
"license": "MIT",
"dependencies": {
"babel-preset-latest": "^6.24.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chalk": "^2.1.0",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.7.0",
"eslint-watch": "^3.1.2",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"jsdom": "^11.5.1",
"json-schema-faker": "^0.5.0-rc11",
"json-server": "^0.12.0",
"localtunnel": "^1.8.3",
"mocha": "^3.5.3",
"nock": "^9.0.20",
"npm-run-all": "^4.1.1",
"nsp": "^2.8.0",
"numeral": "^2.0.6",
"open": "^0.0.5",
"rimraf": "^2.6.2",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"webpack-md5-hash": "^0.0.5"
}
}