-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "pre-testing-rayorian",
"version": "1.0.0",
"description": "Crime Checker",
"main": "index.js",
"type": "module",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"scripts": {
"build": "babel index.js -d dist",
"start": "npx nodemon --exec npx babel-node index.js",
"lint-js": "npx eslint index.js",
"lint-css": "npx stylelint \"**/*.css\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-23/preA-week2-http-rayorian"
},
"keywords": [
"map",
"crime checker"
],
"author": "raymond thompson & orian paled",
"license": "MIT",
"bugs": {
"url": "https://github.com/fac-23/preA-week2-http-rayorian/issues"
},
"homepage": "https://github.com/fac-23/preA-week2-http-rayorian#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.6.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1"
},
"dependencies": {
"@babel/eslint-parser": "^7.24.7",
"dotenv": "^16.4.5"
}
}