-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "opencourseapi-explorer",
"version": "0.1.0",
"description": "A clean frontend explorer for data served by OpenCourseAPI",
"main": "src/index.js",
"license": "MIT",
"private": true,
"author": "Madhav Varshney <madhavarshney@gmail.com>",
"scripts": {
"start": "snowpack dev",
"start:static": "node scripts/static-server.js",
"build": "snowpack build",
"test": "yarn run test:e2e",
"test:e2e": "cypress run"
},
"dependencies": {
"match-sorter": "^4.2.0",
"preact": "^10.4.8",
"preact-router": "^3.2.1",
"prop-types": "^15.7.2",
"react-helmet": "^6.1.0",
"react-select-search": "^2.2.4",
"react-transition-group": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.7",
"@prefresh/snowpack": "^2.1.0",
"@snowpack/plugin-babel": "^2.1.4",
"@snowpack/plugin-dotenv": "^2.0.1",
"@snowpack/plugin-webpack": "2.0.4",
"cypress": "^5.6.0",
"express": "4.17.1",
"react-refresh": "^0.9.0",
"snowpack": "^2.10.1"
}
}