-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.92 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": "recycling-challenge",
"version": "2.0.0",
"description": "Short Recycling trivia challenge to teach Detroit residents about how recycling is done in their city.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/CityOfDetroit/recycling-challenge.git"
},
"keywords": [
"Recycling",
"Trivia",
"Game",
"JS"
],
"bugs": {
"url": "https://github.com/CityOfDetroit/recycling-challenge/issues"
},
"homepage": "https://github.com/CityOfDetroit/recycling-challenge#readme",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"cy:run": "./node_modules/.bin/cypress run --headed",
"test": "start-server-and-test start http://localhost:3000 cy:run"
},
"author": "Edgar Montes",
"license": "MIT",
"dependencies": {
"cod-design-system": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-inline-elements": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.16.0",
"@babel/runtime": "^7.15.4",
"@svgr/webpack": "^6.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"concurrently": "^7.0.0",
"css-loader": "^6.5.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cypress": "^9.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"raw-loader": "^4.0.2",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"browserslist": "> 0.25%, not dead"
}