-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "webdev",
"version": "1.0.0",
"description": "WebDev Exercises and Demos",
"private": true,
"directories": {},
"author": "Andrew Smith",
"license": "BSD-2-Clause",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"axios": "^0.21.1",
"express": "^4.17.1",
"jest": "^25.4.0",
"json-server": "^0.16.1",
"mockapie": "git://github.com/pjones/mockapie.git",
"multer": "^1.4.2",
"nightwatch": "^0.9.8",
"nodemon": "^2.0.7",
"ramda": "^0.27.0",
"ws": "^6.1.3"
},
"scripts": {
"chat": "node bin/chat-server.js",
"start": "json-server --middlewares ./bin/uploadMiddleware.js ./bin/fileServer.js --routes ./bin/routes.json --watch data/db.json -p 3000",
"test": "jest"
},
"jest": {
"testRegex": "(.*.test.jsx?$|/__tests__/.*\\.jsx?$)"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewsouthpaw/webdev"
}
}