forked from fac-13/VP-react-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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": "VP-react-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "parcel public/index.html",
"build": "parcel build public/index.html --public-url ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-recommended": "^2.0.0",
"eslint-plugin-react": "^7.8.2",
"fetch-mock": "^6.4.2",
"jest": "^22.4.4",
"parcel-bundler": "^1.8.1",
"react-testing-library": "^3.1.3"
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"jest": {
"moduleNameMapper": {
"^\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"^\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}