-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
75 lines (75 loc) · 2.67 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
68
69
70
71
72
73
74
75
{
"name": "common-cartridge-viewer",
"version": "0.1.1",
"private": true,
"dependencies": {
"@instructure/ui-billboard": "^5.37.0",
"@instructure/ui-breadcrumb": "^5.37.0",
"@instructure/ui-buttons": "^5.37.0",
"@instructure/ui-elements": "^5.37.0",
"@instructure/ui-forms": "^5.37.0",
"@instructure/ui-icons": "^5.37.0",
"@instructure/ui-layout": "^5.37.0",
"@instructure/ui-pagination": "^5.37.0",
"@instructure/ui-themes": "^5.37.0",
"@instructure/ui-tree-browser": "^5.37.0",
"@lingui/react": "^2.7.2",
"@sentry/react": "^7.31.1",
"@sentry/tracing": "^7.31.1",
"babel-polyfill": "^6.26.0",
"dompurify": "2.2.3",
"file-saver": "^2.0.0",
"lodash": "^4.17.10",
"pretty-bytes": "^5.1.0",
"query-string": "5",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-github-corner": "^2.3.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.3",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"add-locale": "lingui add-locale",
"build": "npm run compile && react-scripts build",
"compile": "lingui compile",
"eject": "react-scripts eject",
"extract": "lingui extract",
"start": "react-scripts start",
"test-all": "testcafe chrome,firefox,safari ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\"",
"test-chrome": "testcafe chrome ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\"",
"test-firefox": "testcafe firefox ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\"",
"test-safari": "testcafe safari ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\"",
"test": "testcafe chrome,firefox ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\"",
"test-screenshots": "testcafe chrome ./tests/test.* --app \"node_modules/.bin/superstatic -p 5000 ./build -s\" -s takeOnFails=true,path=./tests/screenshots,fullPage=true",
"test-headless": "testcafe chrome:headless,firefox:headless ./tests/test.* --page-load-timeout 10000 --assertion-timeout 10000 --app \"node_modules/.bin/superstatic -p 5000 ./build -s\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@lingui/cli": "^2.9.2",
"@lingui/macro": "^2.7.2",
"babel-core": "^7.0.0-bridge.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"superstatic": "^6.0.4",
"testcafe": "^1.4.3"
},
"browserslist": [
"last 2 version",
"ie 11",
"not ie <= 10",
"not op_mini all"
]
}