-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 884 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "game-memory",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"test": "jest",
"preview": "vite preview",
"build": "rm -rf dist && vite build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"gh-pages": "^3.2.3",
"jest": "^27.4.3",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"vite": "^2.7.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"croppie": "^2.6.5"
}
}