-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "chinese-me-server",
"version": "0.0.0",
"description": "A server for ChineseMe app.",
"author": "Timothée Astier",
"license": "GPL-3.0",
"main": "app.js",
"private": false,
"scripts": {
"start": "node build",
"dev": "nodemon scripts/start.js -L --watch '**/*' --ext 'js'",
"build": "babel . --ignore node_modules,tests -s -D -d build --presets latest",
"prestart": "npm run -s build",
"lint": "eslint *.js .; exit 0",
"lint:watch": "watch 'npm run lint'",
"test": "mocha --compilers js:babel-core/register --watch **/tests/*.test.js"
},
"engines": {
"node": "7.3.0"
},
"dependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"base64url": "^2.0.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"cors": "^2.8.4",
"crypto": "0.0.3",
"csv": "^2.0.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"forest-express-sequelize": "^2.2.1",
"i18n-iso-countries": "^3.2.2",
"jsonapi-serializer": "^3.5.3",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.3",
"parse-data-uri": "^0.2.0",
"pg": "^6.1.2",
"sendgrid": "^5.2.0",
"sequelize": "^4.22.8",
"sequelize-cli": "^3.0.0",
"sequelize-replace-enum-postgres": "^1.3.0",
"shortid": "^2.2.6",
"stripe": "^5.5.0",
"validator": "^6.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.2.0",
"nodemon": "^1.9.2"
}
}