This repository was archived by the owner on Jul 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.09 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
{
"name": "bytecode-dashboard",
"version": "1.0.0",
"description": "Client and project dashboard created by Bytecode Digital Agency B.V.",
"main": "server.js",
"repository": "https://github.com/BytecodeBV/Dashboard.git",
"author": "Bytecode <info@bytecode.nl>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"cli": "node ./cli/cli.js",
"dev": "concurrently 'yarn run dev:client' 'yarn run dev:server'",
"dev:client": "rm -rf public/dist && parcel public/src/ts/main.ts --out-dir public/dist",
"dev:server": "nodemon",
"build": "parcel build public/src/ts/main.ts --out-dir public/dist",
"reinstall": "rm -rf node_modules && yarn",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\""
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"concurrently": "^3.6.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"helmet": "^3.12.1",
"inquirer": "^6.0.0",
"mongoose": "^5.1.5",
"morgan": "^1.9.0",
"sqreen": "^1.21.0"
},
"devDependencies": {
"autoprefixer": "^8.6.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-preset-env": "^1.7.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jquery": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"jquery": "^3.3.1",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"parcel-bundler": "^1.9.2",
"postcss": "^6.0.22",
"postcss-modules": "^1.1.0",
"prettier": "^1.13.5",
"prettier-tslint": "^0.4.0",
"prettierrc": "^0.0.0-5",
"response-time": "^2.3.2",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2"
}
}