-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (39 loc) · 973 Bytes
/
package.json
File metadata and controls
40 lines (39 loc) · 973 Bytes
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
{
"name": "statistical-experiment",
"version": "1.0.0",
"description": "Experiment on Statistical Expectations",
"author": "David Norris",
"license": "UNLICENSED",
"main": "app.js",
"private": "true",
"engines": {
"node": "15.x"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"start": "concurrently \"nodemon app.js\" \"npm:build:watch\""
},
"dependencies": {
"@aws-sdk/client-mturk": "^3.47.1",
"aws-sdk": "^2.846.0",
"basic-auth": "^1.1.0",
"body-parser": "^1.16.0",
"crypto-js": "^3.1.9-1",
"csv-express": "^1.1.0",
"express": "^4.14.0",
"guid": "^0.0.12",
"mongoose": "^4.13.19",
"nconf": "^0.8.4",
"soap": "^0.18.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"concurrently": "^7.0.0",
"copy-webpack-plugin": "^10.2.3",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}