-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "monkeys-go-bananas",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"test-controller": "mocha --compilers js:babel-core/register src/__tests__/*",
"watch-controller": "mocha --compilers js:babel-core/register -w src/__tests__/*",
"expo:start": "expo start",
"expo:android": "expo start --android",
"expo:ios": "expo start --ios",
"expo:eject": "expo eject"
},
"dependencies": {
"expo": "^29.0.0",
"prop-types": "^15.6.2",
"react": "16.3.1",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz",
"react-scripts": "1.1.5",
"reactjs-popup": "^1.3.0",
"uuid-js": "^0.7.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"prettier": {
"printWidth": 100,
"jsxBracketSameLine": true,
"singleQuote": true,
"alignObjectProperties": true,
"arrayExpand": true,
"jsxSingleQuote": true,
"tabWidth": 2
}
}