-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "javascript-development-environment",
"version": "1.0.0",
"description": "A JavaScript starter kit to help get started with new projects more efficiently",
"scripts": {
"prestart": "babel-node buildscripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint-watch test-watch",
"open:src": "babel-node buildscripts/srcServer.js",
"security-check": "npm audit fix",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel open:src 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"
},
"author": "Emmanuel Macharia",
"license": "MIT",
"dependencies": {
"fs": "0.0.1-security"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.17.0",
"babel-preset-latest": "^6.24.1",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"compression": "^1.7.4",
"cross-env": "^3.1.3",
"css-loader": "^3.0.0",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.17.3",
"eslint-watch": "^5.1.2",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^9.8.0",
"json-schema-faker": "^0.4.7",
"json-server": "^0.15.0",
"localtunnel": "^1.9.2",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"npm-run-all": "^3.1.1",
"nsp": "^3.2.1",
"numeral": "^1.5.3",
"open": "^6.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"surge": "^0.21.3",
"webpack": "^4.35.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0",
"webpack-md5-hash": "^0.0.5"
}
}