generated from matkat99/sleepoutside
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "wdd-330-sleepoutside",
"version": "2.0.0",
"description": "Boilerplate for WDD 330 SleepOutside project",
"main": "main.js",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"lint": "eslint *.js src/**/*.js",
"format": "prettier --ignore-path ./.gitignore --write \"./**/*.{html,json,js,ts,css}\"",
"test": "jest"
},
"author": "Shane Thompson",
"contributors": [
"Tara Bergener",
"Ramos Anderson",
"Colby MacArthur",
"Ryan Worsham",
"Vern Wolfley"
],
"repository": "https://github.com/vwolfley/wdd-330-sleepoutside",
"private": true,
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"vite": "^5.4.7"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}