forked from unicornware/salaryguidereloaded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@dbklab/salaryguidereloaded",
"version": "1.0.0",
"main": "./index.html",
"description": "Every year, The Diamondback publishes Salary Guide, which contains the salaries of University employees in an easily digestible format. The current templatewas created in 2017, and was also reused for the 2018 edition of Salary Guide. This year, our goal is to revamp the design and features of the site, most notably adding a filter option to the site that'll allow the user to view previous salary data without navigating to a different site.",
"scripts": {
"clean": "rimraf ./build",
"predev": "npm run clean",
"dev": "cross-env NODE_ENV=development preact watch --template ./src/public/index.html -p 3000",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production preact build --no-prerender --template ./src/public/index.html",
"predeploy": "npm run build",
"deploy": "serve ./build"
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-proposal-throw-expressions": "^7.7.4",
"@feathersjs/errors": "^3.3.6",
"axios": "^0.18.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.0",
"node-sass": "^4.13.1",
"preact": "^10.1.1",
"preact-cli": "^3.0.0-rc.7",
"preact-cli-plugin-env-vars": "^1.2.1",
"preact-render-to-string": "^5.1.3",
"preact-router": "3.0.0",
"react-ga": "^2.5.7",
"sass-loader": "^7.3.1",
"serve": "^11.3.0"
},
"devDependencies": {
"babel-eslint": "^11.0.0-beta.0",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-config-synacor": "^2.0.2",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"rimraf": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/The-Diamondback-Lab/salaryguidereloaded.git"
},
"keywords": [
"preact",
"salary guide",
"the diamondback",
"dbk",
"umd",
"maryland"
],
"author": "Lexus Drumgold <lex@lexusdrumgold.design> (https://lexusdrumgold.design/workspace)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://gitlab.com/The-Diamondback-Lab/salaryguidereloaded/issues"
},
"homepage": "./",
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
],
"eslintConfig": {
"extends": [
"plugin:jest/recommended",
"standard",
"standard-preact"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"camelcase": 0,
"space-before-function-paren": 0
}
},
"eslintIgnore": [
"build/*"
],
"directories": {
"test": "tests"
}
}