-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.85 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
{
"name": "civil-server-template",
"version": "0.0.0",
"description": "A template to clone, to quicly get started with civil-server",
"main": "index.js",
"scripts": {
"db-up": "start /b mongod --quiet --dbpath ./tmp/db --port 27017",
"db-down": "mongo --eval \"db.getSiblingDB('admin').shutdownServer(); quit()\"",
"dev": "echo \"these delays need to be kept up to date\" && concurrently -k \"npm run hot-transpile\" \"sleep 20 && npm run hot-server\" \"sleep 15 && npm run hot-client\"",
"hot-client": "webpack-dev-server --config webpack-dev.config.js --devtool source-map --host 0.0.0.0",
"hot-server": "nodemon --inspect dist/start.js",
"hot-transpile": "babel --watch app --ignore **/__tests__ --out-dir dist --source-maps",
"packbuild": "webpack --config webpack-prod.config.js",
"postinstall": "bash postinstall.sh",
"start": "node --max_old_space_size=460 dist/start.js",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "babel app --ignore **/__tests__ --out-dir dist --source-maps",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"svgr": "svgr --icon --filename-case kebab assets/svg --out-dir app/svgr && rm app/svgr/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnCiv/civil-server-template.git"
},
"keywords": [
"node",
"express",
"mongo",
"socketio",
"user",
"login",
"logout",
"forgotpassword",
"join"
],
"author": "David Fridley",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://github.com/EnCiv/civil-server-template/issues"
},
"homepage": "https://github.com/EnCiv/civil-server-template#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@svgr/cli": "^5.5.0",
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-inline-elements": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.2.2",
"civil-client": "github:EnCiv/civil-client",
"civil-server": "github:EnCiv/civil-server#main",
"classnames": "^2.2.6",
"compression-webpack-plugin": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.10",
"react-jss": "^10.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}