-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
54
55
{
"name": "spelling-test",
"version": "0.1.0",
"private": true,
"homepage": "http://Jonathan75.github.io/react_spelling_test",
"dependencies": {
"babel-preset-react": "^6.24.1",
"dom-testing-library": "^3.16.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"font-awesome": "^4.7.0",
"gh-pages": "^1.2.0",
"jest-dom": "^3.1.2",
"react": "^16.2.0",
"react-dom": "^16",
"react-scripts": "^1.1.4",
"react-test-renderer": "^16.4.1",
"react-testing-library": "^6.0.0"
},
"devDependencies": {
"babel-jest": "^23.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"jest": "^23.1.0",
"jest-localstorage-mock": "^2.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test": "jest",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
},
"jest": {
"roots": [
"<rootDir>/jest"
],
"testMatch": [
"<rootDir>/**/*.js"
],
"setupFiles": ["jest-localstorage-mock"]
},
"resolutions": {
"jest": "^23.1.0",
"babel-jest": "^23.0.1"
}
}