-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "billing_frontender_magazine",
"version": "1.0.0",
"private": false,
"description": "Billing Frontender Magazine",
"keywords": [],
"author": "Anton Nemtsev <[email protected]>",
"license": "CC",
"main": "server.js",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"connect-redis": "^3.3.0",
"dotenv": "^4.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"express-session": "^1.15.5",
"jsonwebtoken": "^7.4.3",
"jwt-builder": "^1.1.0",
"node-session": "^1.2.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"restify": "^5.2.0",
"restify-cookies": "^0.2.2",
"restify-session": "^1.1.1",
"serve-static-restify": "^2.0.0"
},
"scripts": {
"install": "npm run build",
"start": "node ./build/server.js",
"build:dev": "babel source -s true -d build --ignore __tests__/**,__mocks__/**",
"build": "babel source --minified -s true -d build --ignore __tests__/**,__mocks__/**",
"watch": "babel source --watch --minified -s true -d build --ignore __tests__/**,__mocks__/**"
}
}