-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.24 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
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "JavaScript Boilerplate",
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel security-check opensrc lint-watch test-watch start-mockapi",
"opensrc": "babel-node buildScripts/srcServer.js",
"security-check": "nsp check",
"localtunnel": "lt --port 5000 --subdomain bruce",
"share": "npm-run-all --parallel opensrc localtunnel",
"lint": "esw webpack.config.* src buildScripts --color",
"lint-watch": "npm run lint -- --watch",
"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 5001",
"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": "Bruce Linker",
"license": "MIT",
"dependencies": {
"babel-preset-node6": "^11.0.0",
"hoek": "^5.0.3",
"whatwg-fetch": "2.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.23.1",
"babel-loader": "6.3.2",
"babel-preset-env": "1.7.0",
"babel-register": "6.23.0",
"chai": "3.5.0",
"chalk": "1.1.3",
"cheerio": "0.22.0",
"compression": "1.6.2",
"cross-env": "3.1.4",
"css-loader": "0.26.1",
"eslint": "3.15.0",
"eslint-plugin-import": "2.2.0",
"eslint-watch": "3.0.0",
"express": "4.14.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"html-webpack-plugin": "2.28.0",
"jsdom": "9.11.0",
"json-schema-faker": "0.4.0",
"json-server": "0.9.5",
"localtunnel": "1.8.2",
"mocha": "5.2.0",
"nock": "9.0.6",
"npm-run-all": "4.0.1",
"nsp": "2.6.2",
"numeral": "2.0.4",
"open": "0.0.5",
"rimraf": "2.6.0",
"style-loader": "0.13.1",
"webpack": "2.2.1",
"webpack-dev-middleware": "1.10.1",
"webpack-hot-middleware": "2.17.0",
"webpack-md5-hash": "0.0.5"
}
}