-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 954 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
{
"name": "rn_game",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"lint": "standard --verbose | snazzy",
"newclear": "rm -rf node_modules/ && npm prune && npm i",
"test": "mocha --opts test/mocha.opts --require babel-polyfill test/**/*.js"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it"
]
},
"dependencies": {
"babel": "^6.5.2",
"lodash": "^4.3.0",
"ramda": "^0.19.1",
"react-native": "^0.20.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.5.2",
"redux-saga": "^0.9.1",
"seamless-immutable": "^5.0.1"
},
"devDependencies": {
"babel-polyfill": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "1.2.0",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"sinon": "^1.17.3"
}
}