-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.63 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": "webgl_prototype",
"version": "1.0.0",
"description": "Prototype for a WebGL app",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/imjasonmiller/webgl_prototype"
},
"scripts": {
"test": "cross-env jest mytests/",
"lint": "cross-env eslint --ext .js --ext .jsx src",
"db": "cross-env sh ./db.create.sh",
"dev": "cross-env DEV=true node api/server.js",
"prod:build": "cross-env rimraf ./build/* && webpack-cli --config ./webpack/webpack.prod.js",
"prod:start": "cross-env node api/server.js"
},
"author": "Jason Miller",
"license": "ISC",
"dependencies": {
"animated": "^0.2.2",
"babel-loader": "^8.0.0-beta.0",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.12",
"compression-webpack-plugin": "^1.1.11",
"cross-env": "^5.1.4",
"csrf": "^3.0.6",
"dotenv": "^5.0.1",
"file-loader": "^1.1.11",
"image-webpack-loader": "^4.2.0",
"jsonwebtoken": "^8.2.0",
"knex": "^0.14.4",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-webpack": "^3.0.2",
"lodash": "^4.17.5",
"pg": "^8.6.0",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "^4.0.0",
"react-intl": "^2.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-three-renderer": "^3.2.4",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"rimraf": "^2.6.2",
"styled-components": "^3.2.3",
"three": "^0.89.0",
"three-effectcomposer-es6": "0.0.4",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.12",
"webpack-hot-server-middleware": "^0.5.0",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.38",
"@babel/polyfill": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"@babel/preset-react": "^7.0.0-beta.38",
"@babel/preset-stage-0": "^7.0.0-beta.38",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.1.0",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2"
},
"prettier": {
"singleQuote": false,
"trailingComma": "all",
"semi": false,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true
}
}