-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
38 lines (38 loc) · 1018 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
{
"name": "home",
"version": "0.1.0",
"private": true,
"homepage": "https://opensource.appbase.io/reactivemaps",
"dependencies": {
"@appbaseio/designkit": "0.7.4",
"emotion": "^9.1.2",
"emotion-theming": "^9.1.2",
"gh-pages": "^1.1.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-emotion": "^9.1.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.12.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prettier": "prettier --config ./.prettierrc.js --write src/**/*.js"
}
}