-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
40
41
42
43
44
45
46
47
48
49
{
"name": "customer-filter",
"version": "1.0.0",
"description": "Filter customer list by distance from a determined point",
"main": "server.js",
"scripts": {
"test": "babel-node node_modules/jasmine/bin/jasmine ./api/tests/**/*.js",
"start": "babel-node server.js",
"build": "webpack --mode production --config ./frontend/webpack.config.js",
"lint": "eslint -c ./frontend/.eslintrc ./api/src/**/*.js ./frontend/src/**/*.js",
"heroku-postbuild": "npm run build"
},
"engines": {
"npm": "6.x",
"node": "10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheldonled/customer-filter.git"
},
"author": "Sheldon Led <sheldonled@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sheldonled/customer-filter/issues"
},
"homepage": "https://github.com/sheldonled/customer-filter#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"express": "^4.16.3"
},
"devDependencies": {
"babel-loader": "^7.1.5",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.1.0",
"node-sass": "^4.9.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
}
}