-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 4.7 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "sails-react-bootstrap-webpack",
"version": "7.0.0",
"description": "A virtual startup in-a-box; built on proven technologies like Sails and React. Get up and running in minutes, not days.",
"keywords": [
"sails",
"react",
"bootstrap",
"webpack",
"monorepo",
"startup",
"ngrok",
"tmux",
"autoupdate",
"selfupdate"
],
"dependencies": {
"csrf": "3.1.0",
"json-stringify-safe": "5.0.1",
"lodash": "4.17.21",
"moment-timezone": "0.5.46",
"otplib": "12.0.1",
"qrcode": "1.5.4",
"sails": "1.5.14",
"sails-hook-orm": "4.0.3",
"sails-hook-sockets": "3.0.1",
"sails-mysql": "3.0.1",
"scrypt-kdf": "2.0.1",
"superagent": "10.1.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.26.5",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@ngrok/ngrok": "1.4.1",
"@popperjs/core": "2.11.8",
"babel-loader": "9.2.1",
"bootstrap": "5.3.3",
"bootstrap-icons": "1.11.3",
"chai": "4.4.0",
"chai-spies": "1.1.0",
"chai-uuid": "1.0.6",
"codecov": "3.8.3",
"copy-webpack-plugin": "12.0.2",
"core-js": "3.40.0",
"css-loader": "7.1.2",
"eslint": "8.56.0",
"eslint-plugin-react": "7.37.4",
"favicons": "7.2.0",
"favicons-webpack-plugin": "6.0.1",
"file-loader": "6.2.0",
"fixted": "4.2.7",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"mocha": "11.1.0",
"npm-run-all": "4.1.5",
"nyc": "17.1.0",
"prompts": "2.4.2",
"react": "19.0.0",
"react-bootstrap": "2.10.8",
"react-dom": "19.0.0",
"react-router-dom": "7.1.3",
"readline-sync": "1.4.10",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"style-loader": "4.0.0",
"supertest": "7.0.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"webpack-merge": "6.0.1"
},
"scripts": {
"build": "run-s clean build:prod",
"build:dev": "run-s clean build:dev:webpack",
"build:dev:webpack": "webpack --mode development --config webpack/dev-build.config.js",
"build:prod": "NODE_ENV=production webpack --mode production --config webpack/prod.config.js",
"clean": "rm -rf .tmp && mkdir -p .tmp/public",
"codecov": "npm run lint && NODE_ENV=testing nyc --reporter=lcovonly mocha && codecov --file=test/coverage/lcov.info --disable=gcov",
"coverage": "npm run lint && NODE_ENV=testing nyc --reporter=html npm run custom-mocha",
"create:admin": "sails run create-admin",
"custom-mocha": "mocha --config .mocharc",
"custom-tests": "NODE_ENV=testing npm run custom-mocha",
"db:wipe": "sails run datastore-wipe",
"debug": "node --inspect app.js",
"generate:dek": "node -p \"require('crypto').randomBytes(32).toString('base64')\"",
"generate:token": "node -p \"const crypto = require('crypto'); crypto.createHmac('sha512', crypto.randomBytes(42)).update(crypto.randomBytes(42) + new Date()).digest('hex');\"",
"generate:uuid": "node -p \"require('crypto').randomUUID()\"",
"lift": "node app.js",
"lift:prod": "NODE_ENV=production node app.js",
"lines": "git ls-files --exclude-standard -- ':!:**/*.{png,jpg,svg}' ':!:test/*' ':!:**/*.ai' ':!:.*' ':!:**/.*' ':!:**/*.md' ':!:*.md' ':!:assets/styles' ':!:assets/dependencies' ':!:package.json' ':!:package-lock.json' ':!:config' ':!:LICENSE' | xargs wc -l",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"ngrok": "node ngrok.js",
"setup": "node setup.js",
"start": "run-p webpack lift",
"start:debug": "npm-run-all --parallel webpack debug",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"webpack": "webpack-dev-server --mode development --open --config webpack/dev.config.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/neonexus"
}
],
"pre-commit": [
"test"
],
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/neonexus/sails-react-bootstrap-webpack.git"
},
"homepage": "https://github.com/neonexus/sails-react-bootstrap-webpack",
"author": "NeoNexus DeMortis <[email protected]>",
"license": "Unlicense",
"engines": {
"node": ">=22.13"
}
}