This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "search-mono-repo",
"version": "0.0.1",
"description": "A repository to hold all of our search assets",
"main": "N/A",
"scripts": {
"dev": "nodemon server",
"init": "node init",
"build:server": "npx babel server --out-dir lib --ignore spec.js,test.js",
"format": "prettier --single-quote es5 --write './!(packages|www)/**/*.js'",
"test": "yarn test-server && yarn test-utils",
"test-utils": "mocha -R spec ./utils/**/*test.js",
"test-utils:watch": "mocha -R spec ./utils/**/*test.js --watch",
"test-server": "mocha -R spec ./server/**/*test.js",
"test-server:watch": "mocha -R spec ./server/**/*test.js --watch",
"test:watch": "yarn test-server:watch"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/search-assets.git"
},
"keywords": [
"search",
"algolia",
"freeCodecamp"
],
"author": "freeCodeCamp",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/freeCodeCamp/search-assets/issues"
},
"homepage": "https://github.com/freeCodeCamp/search-assets#readme",
"dependencies": {
"algoliasearch": "^3.25.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"file": "^0.2.2",
"fs-extra": "^5.0.0",
"googleapis": "^27.0.0",
"helmet": "^3.12.0",
"lodash": "^4.17.5",
"node-svn-ultimate": "^1.1.0",
"pmx": "^1.6.4",
"pug": "^2.0.1",
"rxjs": "^5.5.7",
"secure-compare": "^3.0.1",
"validator": "^9.4.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"babel-eslint": "^8.2.2",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"eslint-config-freecodecamp": "^1.1.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.7.0",
"html-entities": "^1.2.1",
"mocha": "^5.0.4",
"nodemon": "^1.17.2",
"prettier": "^1.11.1",
"proxyquire": "^2.0.0",
"sinon": "^4.4.6",
"striptags": "^3.1.1",
"supertest": "^3.0.0"
}
}