forked from pokeclicker/pokeclicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.59 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
{
"name": "pokeclicker",
"version": "0.9.5",
"description": "PokéClicker repository",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"test": "npm run ts-test && npm run eslint",
"ts-test": "gulp scripts",
"eslint": "eslint --ext ts ./src/scripts ./src/modules",
"eslint-fix": "eslint --ext ts --fix ./src/scripts ./src/modules",
"website": "npm test && cross-env NODE_ENV=production gulp website",
"publish": "npm test && git push origin develop:master"
},
"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/gtag.js": "0.0.4",
"@types/jquery": "^3.5.2",
"@types/sortablejs": "^1.10.5",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bootstrap-notify": "^3.1.3",
"browser-sync": "^2.26.12",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"es6-promise": "^4.2.8",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"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.0",
"natives": "^1.1.6",
"ts-loader": "^8.0.4",
"typescript": "^3.7.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-stream": "^6.1.0"
},
"dependencies": {
"@types/bootstrap": "^4.3.1",
"@types/bootstrap-notify": "^3.1.34",
"@types/intro.js": "^2.4.7",
"@types/knockout": "^3.4.66",
"@typescript-eslint/parser": "^3.6.1",
"bootstrap": "^4.5.3",
"eslint": "^7.4.0",
"intro.js": "^2.9.3",
"jquery": "^3.5.1",
"knockout": "^3.5.1",
"popper.js": "^1.16.0",
"sortablejs": "^1.10.2"
}
}