forked from techno-tim/littlelink-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.99 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
{
"name": "littlelink-server",
"version": "1.0.0",
"description": "A server based on littlelink",
"main": "app.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "razzle start",
"build": "razzle build",
"debug": "yarn start --inspect --inspect-port 9230",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"lint": "eslint .",
"lint:style": "stylelint ./src/**/*.css ./public/**/*.css",
"ci": "yarn lint && yarn lint:style && yarn lint:markdown && yarn test",
"lint:markdown": "markdownlint .github/*.md && markdownlint README.md"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"compression": "^1.7.4",
"express": "^4.18.2",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"serialize-javascript": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-react": "^7.18.6",
"babel-preset-razzle": "^4.2.18",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.0",
"markdownlint-cli": "^0.33.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.6",
"razzle": "^4.2.18",
"razzle-dev-utils": "^4.2.18",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.3.0",
"stylelint-config-prettier": "^9.0.5",
"url": "^0.11.0",
"webpack": "^5.76.2",
"webpack-dev-server": "^4.13.1"
}
}