-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·53 lines (53 loc) · 1.44 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
{
"name": "blips",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node_modules/.bin/nodemon index.js",
"build": "node_modules/.bin/webpack --progress --colors --watch",
"start": "node_modules/.bin/webpack && node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babelify": "^8.0.0",
"browser-sync": "^2.23.6",
"browserify": "^16.1.1",
"dotenv": "^5.0.1",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"pino": "^4.14.0",
"pino-http": "^3.2.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"startaudiocontext": "^1.2.1",
"styled-components": "^3.2.5",
"tone": "^0.11.11",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"devDependencies": {
"browser-sync-webpack-plugin": "^2.2.2",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.17.3",
"webpack-dev-server": "^3.1.1"
}
}