-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "beact",
"version": "0.0.3",
"description": "making audio/visual with react and tone.js",
"main": "''",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dashboard -- nodemon --exec babel-node server/server.js --ignore public/ --ignore src/",
"prebuild": "rimraf public",
"build:client": "webpack -d --config webpack.prod.config.js --colors",
"build:server": "webpack --config webpack.server.config.js -p",
"build": "npm-run-all build:*",
"start": "node public/server.js",
"predeploy": "npm run build",
"deploy": "./deploy.sh"
},
"author": "Vibert Thio",
"repository": {
"type": "git",
"url": "git://github.com/vibertthio/beact.git"
},
"license": "MIT",
"dependencies": {
"@tweenjs/tween.js": "17.1.1",
"axios": "^0.17.1",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"helmet": "^3.12.0",
"image-size-loader": "^0.7.0",
"keymaster": "^1.6.2",
"lodash": "^4.17.4",
"mongodb": "^3.0.2",
"mongoose": "^5.0.6",
"prop-types": "^15.5.10",
"react": "16.1.0",
"react-dom": "16.1.0",
"react-tap-event-plugin": "^3.0.2",
"startaudiocontext": "^1.2.1",
"tone": "^0.11.11",
"two.js": "github:vibertthio/two.js#dev",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-minify": "^0.4.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.1.4",
"css-loader": "0.28.7",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^v3.0.2",
"file-loader": "^1.1.5",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.26.0",
"imports-loader": "^0.7.1",
"lodash-webpack-plugin": "^0.11.4",
"nodemon": "^1.11.0",
"npm-run-all": "4.1.2",
"postcss-loader": "^2.0.8",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "2.6.2",
"style-loader": "0.19.0",
"tone": "^0.11.11",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "0.6.2",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^1.0.2",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.13.2"
}
}