-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.32 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": "peter-test",
"version": "0.1.0",
"private": true,
"dependencies": {
"chromeless": "^1.5.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-react-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"jest-image-snapshot": "^2.4.2",
"material-ui": "^0.20.1",
"npm": "^6.1.0",
"react": "^16.4.0",
"react-chat-widget": "^2.1.3",
"react-dom": "^16.4.0",
"react-scripts": "1.1.4",
"travis": "^0.1.1",
"webpack": "^4.12.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"text",
"html"
],
"globals": {
"API_KEY": "AIzaSyBUSBuOuxKUaYv4PwyasG6ZUcx-gLlKgd8",
"AUTH_DOMAIN": "kiwi-staging.firebaseapp.com",
"DATABASE_URL": "https://kiwi-staging.firebaseio.com",
"PROJECT_ID": "kiwi-staging",
"STORAGE_BUCKET": "kiwi-staging.appspot.com",
"MESSAGING_SENDER_ID": "840549430709"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest \".*/__tests__/(?!Peter)(?!regression)\" --browser",
"test:localRegression": "jest index.test.js --runInBand",
"test:localUpdate": "jest index.test.js --updateSnapshot --runInBand",
"test:stagingRegression": "jest regressionStaging.test.js --runInBand",
"test:stagingUpdate": "jest regressionStaging.test.js --updateSnapshot --runInBand",
"test:productionRegression": "jest regressionProduction.test.js --runInBand",
"test:productionUpdate": "jest regressionProduction.test.js --updateSnapshot --runInBand",
"test:headless": "jest --runInBand --setupFiles='/Users/Dnutz/Desktop/CSE112/kiwi/jest/setup.headless.js'",
"eject": "react-scripts eject"
},
"devDependencies": {
"@angular/cli": "^1.7.4",
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.4",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.4.0"
}
}