-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "workshop-interactions-mechanics",
"version": "1.0.0",
"description": "A repo of exercises for the Testing Accessibility workshop: Coding Accessible Interactions & Mechanics",
"scripts": {
"start": "parcel index.html --no-source-maps",
"build": "parcel build index.html --no-source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testing-accessibility/workshop-interactions-mechanics.git"
},
"keywords": [
"accessibility",
"javascript",
"html",
"css",
"web",
"development"
],
"author": "Marcy Sutton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/testing-accessibility/workshop-interactions-mechanics/issues"
},
"homepage": "https://github.com/testing-accessibility/workshop-interactions-mechanics#readme",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@reach/router": "^1.3.4",
"@react-aria/live-announcer": "^3.0.6",
"babel-plugin-transform-glob-import": "^1.0.1",
"dayjs": "^1.10.7",
"react": "^17.0.2",
"react-body-classname": "^1.3.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sanitize-html": "^2.7.0",
"sass-loader": "^10"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@parcel/resolver-glob": "^2.0.1",
"@parcel/transformer-raw": "^2.5.0",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-svg-react": "^2.0.1",
"babel-loader": "^8.2.3",
"buffer": "^6.0.3",
"copy-webpack-plugin": "6",
"parcel": "^2.0.1",
"posthtml-include": "^1.7.2"
},
"alias": {
"data": "./data",
"components": "./components",
"images": "./images"
}
}