-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "javascript-math-sprint-game",
"version": "2.0.0",
"description": "JavaScript - Math Sprint Game",
"author": "Gurov Dmitriy",
"license": "MIT",
"private": true,
"type": "module",
"source": "src/index.html",
"scripts": {
"dev": "parcel",
"build": "parcel build src/index.html --dist-dir build --public-url ./ --no-source-maps",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"check": "tsc --noEmit",
"deploy": "gh-pages -d build",
"predeploy": "npm run build",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --write \"**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts,css,scss,less,md,json}\" --ignore-path .prettierignore",
"lint:stylelint": "stylelint --fix \"**/*.{vue,css,less,scss,html}\" --ignore-path .stylelintignore",
"update": "ncu --interactive --format group"
},
"dependencies": {
"@brainfuljs/brainful": "^0.1.0",
"immutable": "^4.3.7",
"inversify": "^6.0.2",
"jsx-dom": "^8.1.5",
"mustache": "^4.2.0",
"nanoid": "^5.0.8",
"ramda": "^0.30.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@jest/globals": "^29.7.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@types/jest": "^29.5.14",
"@types/mustache": "^4.2.5",
"@types/node": "^22.7.3",
"@types/ramda": "^0.30.2",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"console-browserify": "^1.2.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"parcel": "^2.12.0",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"process": "^0.11.10",
"stylelint": "^16.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-rational-order-fix": "^0.1.9",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.7.0",
"util": "^0.12.5"
},
"volta": {
"node": "20.17.0"
},
"engines": {
"node": ">= 20"
}
}