-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "desafio-mangabadigital",
"version": "1.0.0",
"description": "Desafio de ReactJS feito para concorrer a vaga de dev na EficazPay (Mangaba Digital)",
"private": true,
"main": "webpack.config.js",
"scripts": {
"dev": "set PROD_ENV=0 && webpack && cd public && ws",
"build": "set PROD_ENV=1 && webpack",
"test": "mocha --require babel-core/register \"test/index.js\""
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"styled-components": "^2.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"expect": "^22.0.3",
"file-loader": "^1.1.6",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"local-web-server": "^2.6.1",
"mocha": "^4.0.1",
"react-test-renderer": "^16.2.0",
"webpack": "^3.10.0"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
["inline-import-data-uri", { "extensions": [".png", ".jpg", ".gif"] }]
]
},
"author": "Fernando Henriques",
"license": "ISC"
}