-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.56 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
121
{
"name": "e-commerce-platform",
"version": "2.0.0",
"private": false,
"scripts": {
"start": "cross-env NODE_ENV=dev node app_browsersync",
"dev": "cross-env NODE_ENV=dev sudo nodemon app.js",
"build": "webpack --progress --colors --watch",
"test-build": "webpack --progress --colors",
"test": "mocha -t 80000 test/ --bail",
"browsersync": "cross-env NODE_ENV=dev node app_browsersync",
"generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"production": "webpack --config webpack.production.config.js -p & cross-env NODE_ENV=production node app",
"test-cov": "node node_modules/istanbul-harmony/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --timeout 500000 --recursive test/",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"assert": "^2.0.0",
"async": "^3.0.1",
"body-parser": "~1.19.0",
"browser-sync": "^2.26.3",
"chai": "^4.0.2",
"cheerio": "^0.22.0",
"chokidar": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"colors": "^1.1.2",
"consolidate": "^0.15.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.1",
"cross-env": "^7.0.0",
"crypto": "1.0.1",
"css-loader": "^3.0.0",
"debug": "~4.1.0",
"ejs": "~3.1.2",
"ejs-locals": "^1.0.2",
"express": "~5.0.0-alpha.6",
"express-ejs-layouts": "^2.2.0",
"express-partials": "^0.3.0",
"express-session": "^1.14.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^6.0.0",
"formidable": "^1.0.17",
"fs": "0.0.2",
"http": "0.0.0",
"istanbul-harmony": "^0.3.16",
"jquery": "^3.1.1",
"loadash": "1.0.0",
"lodash": "^4.16.6",
"mocha": "^7.0.1",
"mochawesome": "^6.0.0",
"moment": "^2.15.1",
"mongoose": "5.9.17",
"mongoose-dbref": "0.0.4",
"morgan": "~1.10.0",
"multer": "^1.4.1",
"node-sass": "^4.10.0",
"npm-install-webpack-plugin": "^4.0.4",
"paypal-rest-sdk": "^1.7.0",
"reload": "^3.0.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"serve-favicon": "~2.5.0",
"style-loader": "^1.0.0",
"superagent": "^5.0.2",
"supertest": "^4.0.0",
"url-loader": "^4.0.0",
"webpack": "^4.25.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3",
"xls-to-json": "^0.5.0",
"xls-to-json-lc": "^0.3.3",
"xlsx": "^0.16.0",
"xlsx-to-json-lc": "^0.5.0",
"grunt": "~1.1.0",
"snyk": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.18.0",
"chai": "^4.0.2",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.0",
"crypto": "1.0.1",
"css-loader": "^1.0.0",
"expose-loader": "^0.7.1",
"express-ejs-layouts": "^2.2.0",
"express-partials": "^0.3.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^2.0.0",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.4",
"formidable": "^1.0.17",
"fs": "0.0.2",
"http": "0.0.0",
"istanbul-harmony": "^0.3.16",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.2.0",
"mochawesome": "^3.0.2",
"mongoose": "^5.2.14",
"nodemon": "^2.0.0",
"should": "^13.0.0",
"superagent": "^3.5.2",
"supertest": "^3.0.0",
"url-loader": "^1.1.1",
"webpack": "^4.0.0"
},
"standard": {
"ignore": [
"**/test/",
"/public/",
"/node_modules/",
"/views/"
]
},
"snyk": true
}