-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "shop-bro",
"version": "1.0.0",
"description": "Your shopping bro that will keep your budget on track",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Kokako-2018/shop-bro.git"
},
"babel": {
"presets": [
"env",
"react",
"es2015"
],
"plugins": ["transform-object-rest-spread"]
},
"keywords": [],
"author": "EDA",
"license": "ISC",
"scripts": {
"start": "node server",
"dev": "node server & webpack --watch",
"test": "jest --watch --noStackTrace",
"postinstall": "webpack"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.2",
"bulma": "0.7.0",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"jsdom": "^11.8.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-sound": "^1.1.0",
"sass": "^1.2.0",
"superagent": "^3.8.2",
"supertest": "^3.0.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.1.4"
}
}