forked from NetsBlox/NetsBlox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.24 KB
/
package.json
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
{
"name": "netsblox",
"version": "1.22.1",
"description": "Visual programming environment with networking support",
"bin": {
"netsblox": "./bin/netsblox"
},
"scripts": {
"start": "node bin/netsblox-start.js",
"dev": "npx nodemon --ignore src/browser/dist -w src -w test --exec 'npm run postinstall && npm start'",
"testmon": "npx nodemon -w src -w test --exec 'npm run test'",
"test-quick": "MONGO_URI=mongodb://127.0.0.1:27017/netsblox-tests ENV=test npx mocha --recursive test/unit/server test/unit/client/serialization.spec.js test/features",
"test-client": "MONGO_URI=mongodb://127.0.0.1:27017/netsblox-tests ENV=test bash bin/test-client.sh",
"test": "MONGO_URI=mongodb://127.0.0.1:27017/netsblox-tests ENV=test istanbul --hook-run-in-context cover node_modules/mocha/bin/_mocha -- --timeout 5000 --recursive test/unit/server test/unit/client/serialization.spec.js test/features --exit",
"test-ci": "npm test && node test/utils/additional-ci-checks.js",
"postinstall": "node bin/build.js",
"docker": "docker run -it -p 8080:8080 --env-file .env -e MONGO_URI='mongodb://172.17.0.1:27017/netsblox' -v $PWD:/netsblox netsblox/base bash"
},
"engines": {
"node": ">= 12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NetsBlox/NetsBlox.git"
},
"author": "Brian Broll",
"license": "ISC",
"bugs": {
"url": "https://github.com/NetsBlox/NetsBlox/issues"
},
"homepage": "https://github.com/NetsBlox/NetsBlox",
"dependencies": {
"@rgrove/parse-xml": "^2.0.2",
"async": "^2.6.2",
"aws-sdk": "^2.421.0",
"axios": "^0.18.0",
"bad-words": "^3.0.3",
"body-parser": "^1.18.3",
"cache-manager": "^2.0.0",
"cache-manager-fs": "^1.0.7",
"chalk": "^2.4.2",
"color-hash": "^1.0.3",
"command-exists": "^1.2.8",
"commander": "^2.19.0",
"concat": "^2.0.0",
"cookie-parser": "^1.4.4",
"csv-parse": "^4.3.4",
"doctrine": "^2.0.0",
"dot": "^1.1.1",
"dotenv": "^6.2.0",
"epipebomb": "^1.0.0",
"exists-file": "^3.0.1",
"express": "^4.16.4",
"fast-csv": "^2.4.0",
"fs-extra": "^7.0.1",
"fse": "^4.0.1",
"geolib": "^2.0.18",
"gnuplot": "^0.3.1",
"jade": "^1.9.2",
"jimp": "^0.2.28",
"json-query": "^2.2.2",
"jsonwebtoken": "^7.2.1",
"just.randomstring": "^0.1.1",
"lodash": "^4.17.11",
"memoizee": "^0.4.14",
"moment": "^2.24.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.19",
"moviedb": "^0.2.7",
"node-geocoder": "^3.16.0",
"node-schedule": "^1.3.2",
"nodemailer": "=2.6.4",
"nop": "^1.0.0",
"osmosis": "^1.1.10",
"progress": "^2.0.3",
"q": "^1.5.1",
"qs": "^6.6.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"snap2js": "^1.5.1",
"sphericalmercator": "^1.0.5",
"temp-units-conv": "^0.1.1",
"turf": "^3.0.14",
"urlencode": "^1.1.0",
"vantage": "^1.5.1",
"vantage-repl": "^1.1.4",
"ws": "^5.2.2",
"zeromq": "^6.0.0-beta.6"
},
"devDependencies": {
"expect": "^1.6.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"mocha-chrome": "^2.2.0",
"nodemon": "^1.18.10",
"supertest": "^3.4.2",
"uglify-es": "^3.3.9",
"xmlhttprequest": "^1.8.0"
}
}