-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "monsterr",
"version": "0.2.3",
"description": "Node.js framework for designing socioeconomic experiments.",
"main": "dist/index-node.js",
"browser": "dist/index-browser.js",
"scripts": {
"build": "babel src -d dist",
"test": "jest src"
},
"author": "skbogner",
"license": "ISC",
"dependencies": {
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-socket.io-session": "^1.3.3",
"lodash": "^4.17.10",
"shortid": "^2.2.8",
"socket.io": "^2.1.0",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.3"
}
}