forked from pokeclicker/pokeclicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "pokeclicker",
"version": "0.10.21",
"description": "PokéClicker repository",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"build": "cross-env NODE_ENV=development gulp build",
"test": "npm run ts-test && npm run eslint && npm run stylelint && npm run vitest",
"ts-test": "gulp scripts",
"vitest": "vitest --run",
"eslint": "eslint --ext ts ./src/scripts ./src/modules",
"eslint-fix": "eslint --ext ts --fix ./src/scripts ./src/modules",
"stylelint": "stylelint \"./src/**/*.less\" --cache",
"stylelint-fix": "npm run stylelint -- --fix",
"website": "npm run tl:update && npm test && cross-env NODE_ENV=production gulp website",
"publish": "npm test && node publish.js",
"tl:init": "git submodule update --init",
"tl:update": "git submodule update --remote",
"clean": "npm ci && npm run tl:init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pokeclicker/pokeclicker.git"
},
"babel": {
"presets": [
"env"
]
},
"author": "RedSparr0w",
"license": "ISC",
"bugs": {
"url": "https://github.com/pokeclicker/pokeclicker/issues"
},
"homepage": "https://github.com/pokeclicker/pokeclicker#readme",
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/bootstrap-notify": "^3.1.34",
"@types/intro.js": "^2.4.7",
"@types/jquery": "^3.5.16",
"@types/knockout": "^3.4.66",
"@types/sortablejs": "^1.10.5",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitest/coverage-c8": "^0.29.8",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bootstrap-notify": "^3.1.3",
"browser-sync": "^2.28.3",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"es6-promise": "^4.2.8",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^4.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-changed": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^5.7.0",
"gulp-ejs": "^5.1.0",
"gulp-file-include": "^2.2.2",
"gulp-filter": "^6.0.0",
"gulp-html-import": "^0.0.2",
"gulp-less": "^4.0.1",
"gulp-minify-css": "^1.2.1",
"gulp-minify-html": "^1.0.4",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stream-to-promise": "^0.1.0",
"gulp-strip-debug": "^3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.7",
"husky": "^4.3.8",
"natives": "^1.1.6",
"postcss-less": "^6.0.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-less": "^1.0.0",
"ts-loader": "^8.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^0.29.8",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-stream": "^6.1.0"
},
"dependencies": {
"bootstrap": "^4.5.3",
"eslint": "^7.4.0",
"i18next": "^21.9.2",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-chained-backend": "^3.1.0",
"i18next-http-backend": "^1.4.4",
"intro.js": "^2.9.3",
"jquery": "^3.5.1",
"knockout": "^3.5.1",
"popper.js": "^1.16.0",
"sortablejs": "^1.10.2"
}
}