-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "taxperiments",
"version": "1.0.0",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node app.js"
},
"dependencies": {
"@babel/core": "^7.12.0",
"axios": "^0.20.0",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.3",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.5",
"debug": "^2.6.9",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-sessions": "^1.0.6",
"http-errors": "~1.6.2",
"jquery": "^3.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"npm": "^6.14.8",
"path": "^0.12.7",
"popper.js": "^1.16.1",
"pug": "2.0.0-beta11",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"request": "^2.88.2",
"start": "^5.1.0"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^10.0.0"
},
"description": "This is a simple Node.js express backend for an interactive questionnaire with gamified elements. The questionnaire is adapted from Chen (2018) and aims to explore the connection between flag priming, patriotic sentiments and tax compliance.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasHausberger/FlagPriming.git"
},
"author": "aHausb",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreasHausberger/FlagPriming/issues"
},
"homepage": "https://github.com/andreasHausberger/FlagPriming#readme"
}