-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.16 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "npmcharts.com",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Project template for gulp.js",
"author": "Riku Rouvila <riku.rouvila@leonidasoy.fi>",
"license": "MIT",
"scripts": {
"production": "PORT=3896 pm2 start ecosystem.config.js --env production",
"prod:reload": "pm2 reload ecosystem.config.js --update-env --only npmcharts --env production",
"startup": "pm2 startup",
"stop:production": "pm2 stop npmcharts",
"start": "yarn dev",
"start:server": "cd packages/server && yarn start",
"dev:frontend": "cd packages/frontend && yarn dev",
"dev:server": "cd packages/server && yarn dev",
"dev": "npm-run-all --parallel dev:*",
"build": "NODE_ENV=production yarn build:frontend",
"build:frontend": "cd packages/frontend && yarn build",
"lint": "eslint .",
"test": "jest",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"keywords": [
"template"
],
"dependencies": {
"array-to-sentence": "^1.1.0",
"core-js": "3",
"cors": "^2.8.4",
"d3": "^3.5.6",
"d3-shape": "^1.2.0",
"date-fns": "^1.29.0",
"filenamify": "^2.0.0",
"filesize": "^3.6.0",
"fs-extra": "^5.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.21",
"numeral": "^2.0.6",
"nvd3": "1.8.3",
"pm2": "3.2.2",
"whatwg-fetch": "^0.9.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/preset-env": "7.11.5",
"@babel/runtime": "7.11.2",
"babel-eslint": "10.1.0",
"debug": "^3.1.0",
"eslint": "7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-hooks": "4.1.2",
"jest": "26.0.1",
"npm-run-all": "^4.0.2",
"prettier": "^1.19.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}