-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.15 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
{
"name": "unpoll",
"version": "0.0.2",
"description": "How thousands of people work together to figure out a few questions to ask the candidates, democratically and productively",
"main": "index.js",
"scripts": {
"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",
"prepare": "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/unpoll.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/unpoll/issues"
},
"homepage": "https://github.com/EnCiv/unpoll#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/plugin-transform-react-inline-elements": "^7.16.5",
"@babel/plugin-transform-regenerator": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/runtime": "^7.16.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@svgr/cli": "^6.1.2",
"babel-loader": "^8.2.3",
"concurrently": "^6.5.0",
"css-loader": "^6.5.1",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"civil-client": "github:EnCiv/civil-client",
"civil-server": "github:EnCiv/civil-server",
"classnames": "^2.3.1",
"isemail": "^3.2.0",
"isomorphic-mongo-objectid": "^1.0.9",
"lodash": "^4.17.21",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-flip-move": "^3.0.4",
"react-hot-loader": "^4.13.0",
"react-jss": "^10.9.0",
"react-perfect-scrollbar": "^1.5.8",
"react-textarea-autosize": "^8.3.3",
"shallowequal": "^1.1.0",
"superagent": "^6.1.0",
"use-methods": "github:EnCiv/use-methods"
},
"engines": {
"node": ">=16.x.x <17",
"npm": ">=8.x.x"
}
}