-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "flood-it",
"version": "1.0.0",
"description": "Flood It! is a simple addictive strategy game in which you have to flood the whole game board with one color",
"author": "ghaiklor",
"private": true,
"main": "main.js",
"scripts": {
"build": "npm run build:android && npm run build:ios",
"build:android": "exp build:android",
"build:ios": "exp build:ios",
"lint": "eslint . --ext .js",
"login": "exp login",
"start": "exp start",
"status": "exp build:status",
"test": "jest",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"expo": "28.0.1",
"prop-types": "15.6.2",
"react": "16.14.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-17.0.0.tar.gz",
"react-redux": "5.1.2",
"redux": "3.6.0",
"redux-persist": "4.10.2",
"redux-thunk": "2.3.0",
"snyk": "^1.316.1"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"chai": "3.5.0",
"eslint": "3.19.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-react": "7.0.1",
"exp": "41.0.0",
"jest-expo": "1.0.1",
"pre-commit": "1.2.2",
"react-test-renderer": "15.5.4",
"sinon": "2.2.0"
},
"jest": {
"preset": "jest-expo"
},
"pre-commit": {
"run": [
"lint",
"test"
]
},
"snyk": true
}