This repository has been archived by the owner on Jun 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.43 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
96
97
98
99
{
"name": "ontag_face",
"version": "0.7.1",
"engines": {
"node": "7.x"
},
"description": "Web application for Ontag (a.k.a. the Frontend)",
"main": "server/index.js",
"scripts": {
"heroku-postbuild": "npm run build",
"clean": "rimraf lib public/dist",
"start:dev": "NODE_ENV=development ONTAG_FAKE_CORE=true nodemon server/index.js --ignore dashboard/ --ignore client/ --exec babel-node --presets env,react",
"start:dev2": "NODE_ENV=development ONTAG_FAKE_CORE=false nodemon server/index.js --ignore dashboard/ --ignore client/ --exec babel-node --presets env,react",
"build": "npm run build:server && npm run build:client",
"build:server": "babel server -d lib/server --presets es2015,es2016,es2017,react",
"build:dashboard": "babel dashboard -d lib/dashboard --presets es2015,react",
"build:client": "webpack -p",
"start": "node lib/server/index.js",
"test": "npm run test:lint && npm run test:jest-cov && npm run ci:coveralls",
"test:nocov": "npm run test:lint && npm run test:jest",
"test:lint": "eslint client server dashboard",
"test:jest": "jest",
"test:storybook": "jest stories",
"test:jest-cov": "jest --coverage",
"ci:coveralls": "cat ./coverage/lcov.info | coveralls",
"storybook": "start-storybook -p 9001 -s ./public -c .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonActionForum/ontag_face.git"
},
"contributors": [
"Carlos Saito <[email protected]> (http://saito.style)",
"Cristian Hernandez <[email protected]> (http://crishernandez.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CommonActionForum/liqen-face/issues"
},
"homepage": "https://github.com/CommonActionForum/liqen-face#readme",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.1",
"compression-webpack-plugin": "^0.4.0",
"cookies": "^0.7.0",
"cookies-js": "^1.2.3",
"css-loader": "^0.28.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"isomorphic-fetch": "^2.2.1",
"liqen-scrapper": "^2.1.0",
"lodash": "^4.17.4",
"node-sass": "^4.5.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "next",
"react-redux": "^5.0.5",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"sass-loader": "^6.0.3",
"styled-components": "^2.0.1",
"webpack": "^2.3.3"
},
"devDependencies": {
"@storybook/addon-storyshots": "^3.1.8",
"@storybook/react": "^3.1.6",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"style-loader": "^0.16.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/server/local-liqen.js"
]
}
}