forked from johnpaxton/javascript-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1004 Bytes
/
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
{
"name": "javascript-examples",
"version": "2.0.0",
"description": "\"JavaScript examples for Speeding Planet classes\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint demos/**/*.js",
"server:root": "http-server -p 3000 --cors -c-1",
"server:json": "json-server --watch --port 8000 data/students.json"
},
"author": "John Paxton <[email protected]>",
"license": "ISC",
"repository": {
"url": "https://github.com/johnpaxton/javascript-examples/"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"http-server": "^14.1.0",
"jest": "^27.5.1",
"json-server": "^0.17.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2"
},
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21"
}
}