-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.9 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": "CABI-project",
"version": "1.0.0",
"description": "## CABI-project",
"main": "utils/index.js",
"scripts": {
"test": "jest --watch",
"dev": "parcel public/index.html",
"build": "parcel build public/index.html",
"start": "NODE_ENV=production node src/server.js",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-15/CABI-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-15/CABI-project/issues"
},
"homepage": "https://github.com/fac-15/CABI-project#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.13.0",
"eslint-config-react-minimal": "^1.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"parcel-bundler": "^1.11.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"fs": "0.0.1-security",
"header": "^0.1.1",
"react": "^16.8.1",
"react-country-region-selector": "^1.4.3",
"react-dom": "^16.8.1",
"react-router-dom": "^4.3.1",
"request": "^2.88.0",
"styled-components": "^4.1.3"
},
"jest": {
"moduleNameMapper": {
".(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
".(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}