-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.66 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
{
"name": "torn-space",
"version": "3.0.0",
"description": "A midly popular space simulator MMO",
"main": "app.js",
"scripts": {
"dev": "webpack --progress --config ./deploy/webpack.dev.js",
"build": "webpack --progress --config ./deploy/webpack.prod.js",
"test-build": "webpack --progress --config ./deploy/webpack.test.js",
"build:ptb": "webpack --progress --config ./deploy/webpack.ptb.js",
"dev:lint": "eslint . --fix --ext .ts,.tsx,.js,.jsx && stylelint \"**/*.css\" --fix",
"ci:lint": "eslint . --ext .ts,.tsx,.js,.jsx && stylelint \"**/*.css\"",
"dev:serve": "webpack serve --config ./deploy/webpack.dev.js",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TornDotSpace/Torn.git"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --fix",
"*.css":"stylelint --fix"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"selector-id-pattern": null
}
},
"pre-commit": [
"lint-staged"
],
"keywords": [
"react",
"webpack",
"babel"
],
"author": "The Torn.Space Team",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@types/howler": "^2.2.5",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-loader": "^8.2.3",
"eslint": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.2",
"git-revision-webpack-plugin": "^5.0.0",
"lint-staged": "^12.3.4",
"pre-commit": "^1.2.2",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bad-words": "^3.0.4",
"cors": "^2.8.5",
"discord.js": "^13.6.0",
"howler": "^2.2.3",
"mongodb": "^4.4.0",
"node-fetch": "^3.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1"
}
}