generated from CraftionsMC/craftions-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.71 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": "@craftions/craftions.net",
"version": "1.0.0",
"description": "Our website at craftions.net",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CraftionsMC/craftions.net"
},
"homepage": "https://github.com/CraftionsMC/craftions.net#readme",
"bugs": {
"url": "https://github.com/CraftionsMC/craftions.net/issues"
},
"scripts": {
"webpack:clean": "rm dist/bundle.js",
"webpack:build-dev": "webpack --mode development",
"webpack:build-prod": "webpack --mode production",
"webpack:watch": "webpack --watch",
"webpack:start": "webpack serve",
"express:dev-start": "npm run webpack:build-dev && npm run express:only-start",
"express:prod-start": "npm run webpack:build-prod && npm run express:only-start",
"express:only-start": "node server/index.js",
"express:live-start": "concurrently \"npm run webpack:watch\" \"npm run express:only-start\"",
"eslint:lint": "eslint . --ext .ts,.tsx",
"prettier:check": "prettier --check src",
"prettier:write": "prettier --write src",
"npm:deploy": "npm publish",
"docker:build": "docker build . -t\"mctzock/craftions.net\"",
"docker:deploy": "docker push mctzock/craftions.net",
"docker:run": "docker run -d --publish 8080:3000 --name website mctzock/craftions.net",
"nodemon:start": "nodemon --config nodemon.json"
},
"author": "The Craftopns Developers",
"license": "GPL-3.0-only",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"bulma": "^0.9.3",
"bulma-prefers-dark": "^0.1.0-beta.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"kill-port": "^1.6.1",
"react": "^17.0.2",
"react-bulma-components": "^4.0.7",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-typing-animation": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.1",
"@types/react-typing-animation": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-loader": "^8.2.3",
"concurrently": "^6.3.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"eslint": "^8.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.4.0",
"node-sass": "^6.0.1",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
}
}