-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.83 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
{
"name": "laiban-prototype",
"version": "0.5.0",
"description": "Digital assistant for kids in kindergarten. This project is a prototype and is meant for testing purpose only.",
"author": "Nikolas Ramstedt",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "cross-env NODE_ENV=development webpack --watch --config ./bundler/webpack.dev.js",
"watch-server": "nodemon server/index.js",
"start": "node server/index.js",
"build": "cross-env NODE_ENV=production webpack --config ./bundler/webpack.prod.js"
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"@material-ui/system": "^3.0.0-alpha.2",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"fs-extra": "^8.0.1",
"howler": "^2.1.2",
"netjet": "^1.3.0",
"node-fetch": "^2.4.1",
"nodemon": "^1.18.10",
"prop-types": "^15.7.2",
"query-string": "^6.5.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-ga": "^2.5.7",
"react-hot-loader": "^4.8.0",
"react-router-dom": "^5.0.0",
"typeface-roboto": "0.0.54"
}
}