-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
{
"name": "infinity-board",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-sdk": "^2.279.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.9",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"fs": "^0.0.1-security",
"image-size": "^0.6.2",
"jsdoc": "git+https://github.com/ondras/jsdoc.git#mjs",
"mongodb": "^3.0.1",
"node-es-module-loader": "^0.3.8",
"prop-types": "^15.6.0",
"randomcolor": "^0.5.3",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-s3-uploader": "https://github.com/kylecombes/react-s3-uploader.git",
"react-scripts": "1.1.0",
"react-test-renderer": "^16.2.0",
"redux": "^4.0.0",
"regenerator-runtime": "^0.11.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"style-loader": "^0.20.1",
"uuid": "^3.2.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"scripts": {
"webpack:deploy": "webpack --config=webpack.config.js -p",
"heroku-postbuild": "npm run webpack:deploy",
"start": "webpack-dev-server --inline --hot",
"build": "webpack --config=webpack.config.js",
"dev": "webpack-dev-server --inline --hot",
"test": "jest",
"doc": "mkdir temp && documentation build server/*js* -f html -o temp && mv temp/index.html docs/server.html && documentation build app/src/**/*js* -f html -o temp && mv temp/index.html docs/app.html && rm -rf temp",
"lint": "eslint --ext .jsx --ext .js --ext .mjs .",
"validate": "npm ls",
"server": "node --experimental-modules server/index.mjs"
},
"devDependencies": {
"documentation": "^6.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"precommit-hook-eslint": "^3.0.0"
},
"pre-commit": [
"lint"
],
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"engines": {
"node": ">=8.5"
}
}