-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
148 lines (148 loc) · 5.51 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "culturestake",
"version": "1.0.0",
"description": "CultureStake is a web-based voting system for cultural decision making and investment",
"main": "src/server/index.js",
"scripts": {
"build": "npm run clear && npm run server:build && npm run client:build",
"clear": "rimraf ./build",
"client:build": "cross-env NODE_ENV=production webpack --mode production --progress",
"client:clear": "rimraf ./build/static",
"client:watch": "cross-env NODE_ENV=development webpack --mode development --watch --progress",
"db:migrate": "sequelize db:migrate",
"db:new-migration": "./node_modules/.bin/sequelize-cli migration:generate --name",
"db:seed": "sequelize db:seed:all",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint './src/client/**/*.js'",
"lint:js": "eslint --ignore-path .gitignore ./",
"server:build": "babel ./src/server --out-dir ./build/server && babel ./src/common --out-dir ./build/common && cp ./src/server/index.pug ./build/server/index.pug",
"server:start": "cross-env NODE_ENV=production node ./build/server/index.js",
"server:watch": "nodemon --watch ./src/server --exec cross-env NODE_ENV=development babel-node ./src/server/index.js --source-maps inline",
"start": "npm run server:start",
"test": "cross-env NODE_ENV=test WORKER=true jest --runInBand --detectOpenHandles",
"test:watch": "npm run test -- --watch",
"backend:start": "concurrently --prefix '{pid}-{name}' --names 'API,WORKERS' --kill-others 'npm run server:start' 'npm run worker:start'",
"backend:watch": "concurrently --prefix '{pid}-{name}' --names 'API,WORKERS' --kill-others 'npm run server:watch' 'npm run worker:watch'",
"worker:serve": "NODE_ENV=production babel-node -r dotenv/config ./src/server/worker.js --source-maps inline",
"worker:start": "cross-env NODE_ENV=development WORKER=true node ./build/server/worker.js",
"worker:watch": "WORKER=true nodemon --watch ./src --exec npm run worker:serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitspossessed/culturestake.git"
},
"private": true,
"contributors": [
"adzialocha",
"ana0"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/bitspossessed/culturestake/issues"
},
"homepage": "https://github.com/bitspossessed/culturestake#readme",
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"assets-webpack-plugin": "^5.1.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.11.1",
"cross-env": "^7.0.2",
"css-loader": "^4.2.2",
"dotenv": "^8.2.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.1.0",
"globals": "^13.2.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"supertest": "^4.0.2",
"truffle": "^5.1.42",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@metamask/detect-provider": "^1.1.0",
"@zxing/library": "^0.17.1",
"animation-frame": "^0.3.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bull": "^3.20.1",
"celebrate": "^13.0.4",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"csv-stringify": "^5.6.2",
"culturestake-contracts": "^1.0.29",
"date-fns": "^2.17.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"graphql": "^15.3.0",
"graphql-request": "^3.0.0",
"helmet": "^4.1.0",
"http-status": "^1.4.2",
"immutability-helper": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"luxon": "^1.25.0",
"method-override": "^3.0.0",
"mime": "^2.4.6",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pepjs": "^0.5.2",
"pg": "^8.3.3",
"pug": "^3.0.0",
"qrcode": "^1.4.4",
"react": "^16.13.1",
"react-datetime-picker": "^3.0.2",
"react-dom": "^16.13.1",
"react-dropzone": "^11.3.1",
"react-form": "^4.0.1",
"react-promise-suspense": "^0.3.3",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-three-fiber": "^4.2.20",
"redis": "^3.0.2",
"redux": "^4.0.5",
"redux-create-action-types": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^6.3.4",
"sequelize-slugify": "^0.9.1",
"sharp": "^0.26.0",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7",
"three": "^0.125.0",
"web3": "^1.2.11",
"winston": "^3.3.3"
}
}