-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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": "file-parser",
"author": "Amplement",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist/server.js",
"install": "npm run build",
"build": "babel ./src -d ./dist -s --copy-files",
"deploy": "gcloud app deploy",
"development": "pm2 startOrReload ./pm2/ecosystem.config.js",
"production": "pm2 startOrReload ./pm2/ecosystem.config.js --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amplement/file-parser.git"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"fast-csv": "^2.4.1",
"multer": "^1.3.1",
"raven": "^2.6.3",
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0"
}
}