-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
{
"private": true,
"type": "module",
"name": "burning-note",
"version": "1.1.0",
"description": "Simple application that allows you to create one-time notes. Have some secrets to tell to your friends? Go ahead and then just BURN it! >:)",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start-all": "npm run build && NODE_ENV=production node src/server/index.js",
"client": "webpack-dev-server --mode development --devtool inline-source-map",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm run build",
"start": "node src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xooolod/BurningNote.git"
},
"author": "xooolod",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/xooolod/BurningNote/issues"
},
"homepage": "https://github.com/xooolod/BurningNote#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"babel": "^6.23.0",
"bootstrap": "^5.3.3",
"chai": "^5.1.2",
"clean-webpack-plugin": "^4.0.0",
"compression": "^1.7.5",
"concurrently": "^9.0.1",
"core-js": "^3.38.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"html-webpack-plugin": "^5.6.3",
"nodemon": "^3.1.7",
"path": "^0.12.7",
"react": "^18.3.1",
"react-apple-emojis": "^2.2.2",
"react-bootstrap": "^2.10.5",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"sinon": "^19.0.2",
"sqlite3": "^5.1.7",
"testing-library": "^0.0.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint/js": "^9.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"webpack-dev-server": "^5.1.0"
}
}