-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "sms-dashboard",
"version": "0.0.1",
"description": "Admin dashboard for sending SMS message.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/CityOfDetroit/sms-dashboard.git"
},
"keywords": [
"sms",
"dashboard",
"alerts",
"js",
"react",
"jest"
],
"bugs": {
"url": "https://github.com/CityOfDetroit/sms-dashboard/issues"
},
"homepage": "https://github.com/CityOfDetroit/sms-dashboard#readme",
"scripts": {
"start": "parcel src/index.html --https --no-cache -p 3000",
"test": "jest",
"build": "parcel build src/index.js --no-cache --public-url '.' -d build"
},
"author": "Edgar Montes",
"license": "MIT",
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@fortawesome/fontawesome-free": "^5.12.0",
"babel-jest": "^24.9.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"react-test-renderer": "^16.12.0",
"sass": "^1.24.4"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/styleMock.js"
}
}
}