-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.22 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
65
66
67
68
69
70
{
"name": "js-dev-env",
"version": "0.1.0",
"description": "A javascript development environment starter",
"scripts": {
"prestart": "babel-node scripts/startMessage.js",
"start": "npm-run-all --parallel security-check open:src lint:watch test:watch start-mockapi",
"open:src": "babel-node scripts/srcServer.js",
"lint": "esw webpack.config.* src scripts --color",
"lint:watch": "npm run lint -- --watch",
"test": "mocha --reporter progress scripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"localtunnel": "lt --port 3001",
"share": "npm-run-all --parallel open:src localtunnel",
"security-check": "nsp check",
"generate-mock-data": "babel-node scripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "json-server --watch src/api/db.json --port 3003"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwilli/js-dev-env.git"
},
"keywords": [
"starter-kit",
"dev-environment"
],
"author": "Jared Williams <jaredwilli@gmail.com> (http://anti-code.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredwilli/js-dev-env/issues"
},
"homepage": "https://github.com/jaredwilli/js-dev-env#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.2",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"eslint-watch": "^3.1.4",
"express": "^4.16.3",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.7.0",
"json-schema-faker": "0.4.2",
"json-server": "^0.12.1",
"localtunnel": "^1.9.0",
"mocha": "^5.0.5",
"nock": "^9.2.3",
"npm-run-all": "^4.1.2",
"nsp": "^3.2.1",
"numeral": "^2.0.6",
"open": "0.0.5",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-dev-middleware": "^3.1.2",
"webpack-hot-middleware": "^2.21.2",
"webpack-md5-hash": "0.0.6"
},
"dependencies": {
"whatwg-fetch": "^2.0.4"
}
}