forked from neonexus/sails-react-bootstrap-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.07 KB
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
{
"name": "sails-react-bootstrap-webpack",
"version": "1.1.0",
"description": "An opinionated base configuration of Sails, with Webpack for React support, and Bootstrap for styling.",
"keywords": [
"sails",
"react",
"bootstrap",
"webpack"
],
"dependencies": {
"bootstrap": "^4.5.0",
"copy-webpack-plugin": "^6.0.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"moment-timezone": "^0.5.31",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"sails": "^1.2.4",
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^2.0.0",
"sails-mysql": "^1.0.1",
"scrypt-kdf": "^2.0.1",
"serve-static": "^1.14.1",
"superagent": "^5.2.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint": "7.0.0",
"eslint-plugin-react": "^7.20.0",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"start": "run-p open:client lift",
"start:debug": "npm-run-all --parallel open:client debug",
"open:client": "webpack-dev-server --mode development --open --config webpack/dev.config.js",
"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": "rimraf .tmp && mkdirp .tmp/public",
"lift": "node app.js",
"debug": "node --inspect app.js",
"lines": "git ls-files --exclude-standard -- ':!:**/*.[pjs][npv]g' ':!:**/*.ai' ':!:.idea' ':!:**/*.eslintrc' ':!:package-lock.json' | xargs wc -l"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/neonexus/sails-react-bootstrap-webpack.git"
},
"author": "NeoNexus DeMortis",
"license": "none",
"engines": {
"node": "^10.15"
}
}