-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 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
{
"name": "realtime-collaborative-whiteboard",
"version": "1.0.0",
"description": "A super simple canvas painter in vanilla JavaScript with Socket.io over Node.js",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"dev": "nodemon server/server.js",
"test:unit": "mocha tests/unit/**/*.js",
"test:integration": "mocha tests/integration/**/*.js",
"test:system": "cypress run",
"test:performance": "artillery run tests/performance/performance_test.yml",
"test": "npm run test:unit && npm run test:integration && npm run test:system && npm run test:performance"
},
"dependencies": {
"express": "^4.17.1",
"socket.io": "^4.1.3",
"sanitize-html": "^2.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"sinon": "^11.1.2",
"jsdom": "^16.6.0",
"socket.io-client": "^4.1.3",
"cypress": "^8.3.0",
"artillery": "^1.7.8",
"eslint": "^7.32.0",
"eslint-plugin-mocha": "^9.0.0",
"nodemon": "^2.0.12",
"canvas": "^2.9.3"
},
"author": "Your Name",
"license": "MIT"
}