-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.27 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.27 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": "javascriptdevenvkit",
"version": "1.0.0",
"description": "Demo repo",
"main": "index.js",
"scripts": {
"prestart": "node buildScripts/startMessage.js",
"start": "npm run open:src",
"open:src": "set DEBUG=app,app:* & nodemon buildScripts/srcServer.js",
"security-check": "nsp check",
"localtunnel": "lt --port 3000",
"share": "npm run open:src && npm run localtunnel",
"lint": "eslint buildScripts/srcServer.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.wdf.sap.corp/i860624/JavascriptDevEnvKit.git"
},
"author": "Emily Calvet",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cryptiles": "^4.1.2",
"ejs": "^2.6.1",
"event-stream": "^4.0.0",
"fresh": "^0.5.2",
"hoek": "^4.2.1",
"lodash": "^4.17.15",
"mime": "^1.4.1",
"mssql": "^4.3.2",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.4",
"babel-preset-latest": "6.24.1",
"babel-register": "6.26.0",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"cheerio": "1.0.0-rc.2",
"compression": "1.7.3",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"debug": "^4.1.0",
"eslint": "^5.8.0",
"eslint-config-google": "^0.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-watch": "^7.0.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "3.2.0",
"jsdom": "12.2.0",
"json-schema-faker": "0.5.0-rc16",
"json-server": "^0.16.1",
"localtunnel": "^2.0.0",
"mocha": "^7.2.0",
"nock": "10.0.1",
"nodemon": "^2.0.4",
"nsp": "3.2.1",
"numeral": "2.0.6",
"open": "^7.0.4",
"rimraf": "2.6.2",
"socket.io": "^2.1.1",
"style-loader": "0.23.1",
"webpack": "^4.43.0",
"webpack-dev-middleware": "3.4.0",
"webpack-hot-middleware": "2.24.3",
"webpack-md5-hash": "0.0.6"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500"
}
}