-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 962 Bytes
/
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
{
"name": "react-minimal",
"version": "0.1.0",
"description": "the essence of a react component",
"repository": "https://github.com/dev-academy-challenges/react-minimal.git",
"main": "index.js",
"scripts": {
"knex": "knex",
"start": "node server & webpack --watch"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties"
]
},
"keywords": [],
"author": "EDA",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"express": "^4.16.2",
"knex": "^0.15.2",
"sqlite3": "^4.0.4",
"superagent": "^4.0.0-beta.5"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"nodemon": "^1.18.6",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.10.0"
}
}