-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-fiber-experiments",
"version": "0.7.0",
"private": true,
"description": "Discover React Fiber's new features like Suspense",
"keywords": [
"Suspense",
"React Fiber",
"React",
"create-react-app",
"eslint",
"config-airbnb",
"prettier"
],
"author": "Christophe Rosset <tophe@topheman.com> (http://labs.topheman.com/)",
"repository": {
"type": "git",
"url": "https://github.com/topheman/react-fiber-experiments.git"
},
"bugs": {
"url": "https://github.com/topheman/react-fiber-experiments/issues"
},
"license": "MIT",
"dependencies": {
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.17",
"@reach/router": "^1.2.1",
"classnames": "^2.2.6",
"loadable-components": "^2.2.3",
"prop-types": "^15.6.2",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-scripts": "1.1.5",
"recompose": "^0.30.0",
"route-parser": "0.0.5"
},
"scripts": {
"prestart": "npm run clear:babel-cache",
"start": "react-app-rewired --require ./bin/expand-metadatas.js start",
"prebuild": "npm run clear:babel-cache",
"build": "react-app-rewired --require ./bin/expand-metadatas.js build && cp build/index.html build/200.html",
"test": "npm-run-all --parallel --silent test:unit test:cypress",
"test:travis": "npm-run-all --parallel --silent test:unit test:cypress:travis",
"test:travis:pr": "echo 'Travis PRs do not have access to env vars, run your tests according to that' && npm test",
"test:unit": "cross-env CI=true npm run test:unit:watch",
"test:unit:watch": "react-app-rewired --require ./bin/expand-metadatas.js test --env=jsdom",
"test:cypress": "npm run build && npm run cy:start-server-and-test",
"test:cypress:travis": "npm run build && npm run cy:start-server-and-test:travis",
"test:cypress:dev": "npm-run-all --parallel --race start 'cy:open -- --config baseUrl=http://localhost:3000'",
"test:cypress:debug-build": "npm run build && cross-env CYPRESS_LAUNCH_MODE=debug-build npm-run-all --parallel --race serve cy:open",
"cy:open": "cypress open",
"precy:run": "node cypress/support/precyrun.js",
"cy:run": "cross-env CYPRESS_TRAVIS=$TRAVIS cypress run",
"precy:run:travis": "node ./bin/precyruntravis.js",
"cy:run:travis": "npm run cy:run -- --record",
"cy:start-server-and-test": "npx start-server-and-test serve :5000 cy:run",
"cy:start-server-and-test:travis": "npx start-server-and-test serve :5000 cy:run:travis",
"test:precommit": "npm run test:unit",
"eject": "react-scripts eject",
"lint": "npx eslint .",
"clear:babel-cache": "rimraf -rf ./node_modules/.cache/babel-loader/*",
"generate-changelog": "./bin/generate-changelog.js",
"pretty": "npx prettier --write '**/*.{js,jsx,json,css,scss}'",
"serve": "npx serve --no-clipboard --single --listen 5000 build"
},
"devDependencies": {
"babel-plugin-macros": "^2.4.2",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.0",
"cypress-testing-library": "^2.2.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-prettier": "^2.7.0",
"generate-changelog": "^1.7.1",
"git-rev-sync": "^1.12.0",
"github-url-from-git": "^1.5.0",
"husky": "^1.0.1",
"jest-dom": "^1.12.1",
"lint-staged": "^7.3.0",
"moment": "^2.22.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.3",
"preval.macro": "^3.0.0",
"react-app-rewired": "^1.6.2",
"react-testing-library": "^5.1.0",
"rimraf": "^2.6.2",
"serve": "^10.0.2",
"start-server-and-test": "^1.7.13"
},
"lint-staged": {
"**/*.{js,jsx,json,css,scss}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint && npm run test:precommit"
}
},
"homepage": "/"
}