forked from Blockrazor/blockrazor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "blockrazor",
"private": true,
"version": "0.0.1",
"scripts": {
"build": "meteor build ./dist",
"start": "npm run start:dev",
"prod": "npm run start:prod",
"debug": "npm run start:debug",
"start:dev": "./node_modules/.bin/cross-env ROOT_URL=http://localhost:3000 HTTP_FORWARDED_COUNT=0 meteor run",
"start:prod": "./node_modules/.bin/cross-env ROOT_URL=https://blockrazor.org HTTP_FORWARDED_COUNT=1 meteor run --production",
"start:debug": "npm run start:dev --inspect",
"lint": "./node_modules/.bin/eslint . --fix",
"test": "jest --testMatch \"**/?(*.)(jest-test).js?(x)\" --passWithNoTests --watch"
},
"dependencies": {
"analytics-node": "^3.2.0",
"assert": "^1.4.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"bootstrap": "^4.1.0",
"bootstrap-slider": "^10.0.0",
"chart.js": "^2.7.1",
"core-js": "^2.5.3",
"corejs-typeahead": "^1.2.1",
"disposable-email": "^0.2.3",
"fibers": "^2.0.0",
"jquery-validation": "^1.17.0",
"js-cookie": "^2.2.0",
"later": "^1.2.0",
"lodash.get": "^4.4.2",
"marked": "^0.3.17",
"meteor-node-stubs": "~0.2.4",
"moment": "^2.20.1",
"popper.js": "^1.14.3",
"recaptcha-v2": "^0.1.3",
"request": "^2.85.0",
"scrollmagic": "^2.0.5",
"simpl-schema": "^1.4.2",
"smartwizard": "^4.3.1",
"sweetalert2": "^7.19.3",
"underscore": "^1.8.3",
"wdio-mocha-framework": "^0.5.13",
"webdriverio": "^4.12.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"blaze-renderer": "^0.9.0",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
}
}