-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.51 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.51 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "praqma-maturity-model",
"version": "1.0.0",
"description": "Praqma Maturity Model",
"main": "src/index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon buildScripts/src-server.js --exec babel-node --presets es2015,stage-2",
"open:src": "babel-node buildScripts/src-server.js",
"build": "npm-run-all build:client build:server",
"prebuild:server": "rimraf ./build && mkdir build",
"build:server": "babel api -d build",
"serve:api": "node build/apiServer.js",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild:client": "npm-run-all clean-dist test lint",
"build:client": "babel-node buildScripts/build.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "nsp check",
"localtunnel": "lt --port 3000 -s praqma",
"share": "npm-run-all --parallel open:src localtunnel",
"test": "mocha --reporter list buildScripts/test-setup.js \"api/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"coverage": "nyc npm test",
"coverage:ci": "nyc --reporter text-summary --lines 0 --functions 0 --branches 0 npm test",
"prestart_OLD": "babel-node buildScripts/start-message.js"
},
"nyc": {
"check-coverage": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
],
"reporter": [
"text"
],
"clean": true,
"cache": false,
"all": true
},
"author": "Edmond Petres",
"license": "ISC",
"dependencies": {
"async": "^2.5.0",
"axios": "^0.16.2",
"babel-runtime": "^5.8.0",
"body-parser": "^1.18.2",
"chart.js": "^2.7.0",
"compression": "1.6.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "4.14.0",
"express-history-api-fallback": "^2.2.1",
"helmet": "^3.8.1",
"jquery": "^3.2.1",
"json-schema-faker": "^0.3.6",
"mongodb": "^2.2.31",
"path": "^0.12.7",
"popper.js": "^1.14.1",
"vue": "^2.4.2",
"vue-axios": "^2.0.2",
"vue-router": "^2.7.0",
"whatwg-fetch": "^2.0.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-0": "^6.1.2",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "6.24.1",
"chai": "4.0.2",
"chalk": "1.1.3",
"cheerio": "0.22.0",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "3.1.3",
"css-loader": "0.25.0",
"eslint": "3.19.0",
"eslint-plugin-import": "2.3.0",
"eslint-watch": "2.1.14",
"extract-text-webpack-plugin": "1.0.1",
"html-webpack-plugin": "2.22.0",
"istanbul": "^0.4.5",
"jsdom": "9.8.0",
"json-schema-faker": "0.3.6",
"json-server": "0.8.22",
"localtunnel": "1.8.1",
"lodash": "^4.17.4",
"mocha": "3.1.2",
"nock": "8.1.0",
"node-sass": "^4.5.3",
"npm-run-all": "3.1.1",
"nsp": "2.6.2",
"numeral": "1.5.3",
"nyc": "^11.0.2",
"open": "0.0.5",
"rimraf": "2.5.4",
"sass-loader": "^6.0.6",
"style-loader": "0.13.1",
"surge": "0.18.0",
"vue-hot-reload-api": "^2.1.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^7.3.0",
"webpack": "1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0",
"webpack-md5-hash": "0.0.5",
"xo": "^0.18.2"
}
}