-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "instakittens-react-admin",
"version": "0.1.0",
"description": "React-admin application for the Instakittens project",
"author": {
"name": "Frédéric Bonnet",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fredericbonnet/instakittens-react-admin.git"
},
"dependencies": {
"prop-types": "^15.7.2",
"ra-data-json-server": "^2.9.9",
"react": "^16.12.0",
"react-admin": "^2.9.9",
"react-dom": "^16.12.0",
"react-scripts": "^3.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"e2e": "cd puppeteer && jest -c e2e/jest.config.js",
"e2e:watch": "cd puppeteer && jest -c e2e/jest.config.js --watch",
"cucumber": "cd puppeteer && cucumber-js",
"cucumber:watch": "nodemon -e js,feature -x npm run cucumber -- -- --profile watch",
"e2e-playwright": "cd playwright && jest -c e2e/jest.config.js",
"e2e-playwright:watch": "cd playwright && jest -c e2e/jest.config.js --watch",
"cucumber-playwright": "cd playwright && cucumber-js",
"cucumber-playwright:watch": "nodemon -e js,feature -x npm run cucumber-playwright -- -- --profile watch",
"cypress:run": "cypress run",
"cypress:watch": "nodemon -e js,feature -x npm run cypress:run",
"cypress:open": "cypress open",
"testcafe": "node testcafe",
"testcafe:watch": "node testcafe --live",
"codeceptjs": "codeceptjs run --config codeceptjs/codecept.conf.js",
"codeceptjs:watch": "nodemon -e js,feature -x npm run codeceptjs",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"codeceptjs": "^2.3.6",
"cucumber": "^6.0.5",
"cypress": "^3.6.1",
"cypress-cucumber-preprocessor": "^1.16.2",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"nodemon": "^2.0.1",
"picklejs": "^0.101.0",
"playwright": "^0.9.21",
"puppeteer": "^1.20.0",
"testcafe": "^1.7.0"
}
}