This repository was archived by the owner on Dec 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 KB
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
{
"name": "IMA.js-skeleton",
"version": "0.16.0",
"description": "Isomorphic javascript application",
"main": "build/server.js",
"scripts": {
"app:hello": "node_modules/.bin/gulp app:hello",
"app:feed": "node_modules/.bin/gulp app:feed",
"app:todos": "node_modules/.bin/gulp app:todos",
"test": "node_modules/.bin/jest --config jest.conf.json",
"lint": "node_modules/.bin/eslint --fix './{app,server}/**/*.{js,jsx}'",
"dev": "node_modules/.bin/gulp dev",
"gulp": "node_modules/.bin/gulp",
"build": "NODE_ENV=production node node_modules/gulp/bin/gulp build",
"build:spa": "NODE_ENV=production node node_modules/gulp/bin/gulp build:spa",
"start": "NODE_ENV=production node build/server"
},
"keywords": [
"IMA.js",
"Isomorphic",
"JavaScript"
],
"author": "Miroslav Jancarik <miroslav.jancarik@firma.seznam.cz>",
"contributors": [
{
"name": "Martin Urban",
"email": "martin.urban@firma.seznam.cz"
},
{
"name": "Martin Jurča",
"email": "martin.jurca@firma.seznam.cz"
},
{
"name": "Ondřej Baše",
"email": "ondrej.base@firma.seznam.cz"
}
],
"repository": {
"type": "git",
"url": "https://github.com/seznam/IMA.js-skeleton.git"
},
"bugs": {
"url": "https://github.com/seznam/IMA.js-skeleton/issues"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "10.0.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "5.14.1",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"ima-examples": "^0.16.2",
"ima-gulp-task-loader": "^0.16.0",
"ima-gulp-tasks": "^0.16.4",
"jest": "24.9.0",
"prettier": "1.18.2"
},
"dependencies": {
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"express": "4.17.1",
"express-http-proxy": "1.5.1",
"helmet": "3.20.1",
"ima": "0.16.10",
"ima-server": "0.16.3",
"method-override": "3.0.0",
"multer": "1.4.2",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"serve-favicon": "2.5.0"
}
}