-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "slackr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run server & npm run client",
"server": "node ./server",
"client": "parcel client/index.html -p 3000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": [
"last 1 Chrome versions"
],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.5",
"express": "^4.15.3",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"morgan": "^1.8.2",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1"
}
}