-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.89 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "konfinity-starter-kit",
"version": "1.0.0",
"description": "Just start coding project",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel security-check start-mockapi open:src lint:watch test:watch",
"open:src": "babel-node buildScripts/srcServer.js",
"prestart": "babel-node buildScripts/startMessage.js",
"security-check": "nsp check",
"localtunnel": "lt --port 5001",
"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",
"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",
"prebuild": "npm-run-all clean-dist test lint",
"clean-dist": "rimraf ./dist && mkdir dist",
"build": "babel-node buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamalpandey2012/Javascript-Starter-Kit.git"
},
"keywords": [
"starter",
"kit",
"javascript",
"just",
"start",
"coding",
"good",
"practices"
],
"author": "kamal@konfinity.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/kamalpandey2012/Javascript-Starter-Kit/issues"
},
"homepage": "https://github.com/kamalpandey2012/Javascript-Starter-Kit#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chalk": "^2.2.0",
"cheerio": "^1.0.0-rc.2",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-watch": "^3.1.3",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.3.0",
"json-schema-faker": "^0.4.6",
"json-server": "^0.12.0",
"localtunnel": "^1.8.3",
"mocha": "^4.0.1",
"nock": "^9.0.24",
"npm-run-all": "^4.1.1",
"nsp": "^2.8.1",
"numeral": "^2.0.6",
"open": "0.0.5",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-md5-hash": "0.0.5"
},
"dependencies": {
"compression": "^1.7.1",
"whatwg-fetch": "^2.0.3"
}
}