forked from mate-academy/js_2048_game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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": "2048",
"version": "1.0.0",
"description": "2048 game",
"scripts": {
"init": "mate-scripts init",
"start": "mate-scripts start",
"lint": "mate-scripts lint",
"test:only": "mate-scripts test",
"build": "mate-scripts build",
"deploy": "mate-scripts deploy",
"update": "mate-scripts update",
"postinstall": "npm run update",
"test": "npm run lint && npm run test:only"
},
"keywords": [],
"author": "Mate Academy",
"license": "GPL-3.0",
"devDependencies": {
"@linthtml/linthtml": "^0.9.5",
"@mate-academy/bemlint": "^0.1.1",
"@mate-academy/eslint-config": "*",
"@mate-academy/jest-mochawesome-reporter": "^1.0.0",
"@mate-academy/linthtml-config": "*",
"@mate-academy/scripts": "^1.3.2",
"@mate-academy/stylelint-config": "0.0.11",
"@parcel/transformer-sass": "2.10.2",
"cypress": "^9.5.3",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-node": "^11.1.0",
"gh-pages": "^3.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^6.2.0",
"parcel": "2.10.2",
"stylelint": "^15.11.0"
},
"browserslist": [
"last 2 versions"
],
"mateAcademy": {
"projectType": "layoutDOM",
"tests": {
"jest": true
}
}
}