-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 KB
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
{
"name": "hahl-web",
"version": "1.0.0",
"description": "",
"engines": {
"node": "9.x",
"npm": "5.x"
},
"main": "src/index.js",
"scripts": {
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"dev": "webpack-dev-server --inline --progress --config webpack.config.dev.js",
"heroku-postbuild": "webpack --verbose",
"start": "node server.js"
},
"keywords": [],
"author": "Alexander Wallin <office@alexanderwallin.com> (http://alexanderwallin.com)",
"license": "ISC",
"private": true,
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^7.0.0",
"prettier": "^1.16.4"
},
"dependencies": {
"@reactify/3dti-toolkit": "^0.7.5",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-styled-components": "^1.5.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"buffer-to-arraybuffer": "0.0.4",
"core-decorators": "^0.18.0",
"css-loader": "^0.28.10",
"decibels": "^2.0.0",
"express": "^4.15.2",
"got": "^6.7.1",
"lodash": "^4.17.4",
"morgan": "^1.8.1",
"node-sass": "^4.7.2",
"polished": "^1.9.2",
"prop-types": "^15.5.9",
"rc-slider": "^8.6.1",
"react": "^15.5.4",
"react-container-dimensions": "^1.3.2",
"react-dom": "^15.5.4",
"react-feather": "^1.0.8",
"react-hot-loader": "next",
"react-markdown": "^3.3.0",
"react-motion-ui-pack": "^0.10.3",
"react-redux": "^5.0.4",
"react-select": "^1.2.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-localstorage": "^0.4.1",
"redux-saga": "^0.15.3",
"sass-loader": "^6.0.7",
"startaudiocontext": "^1.2.1",
"style-loader": "^0.20.2",
"styled-components": "^2.0.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"uuid": "^3.2.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}