-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.4 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
80
81
82
83
84
{
"name": "electron-intro",
"version": "1.2.0",
"main": "src/main.js",
"description": "An easy approach to start building apps with Electron.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"start": "npm run build && electron .",
"commit": "git-cz",
"build": "webpack --verbose --colors --display-error-details --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henriquesosa/intro-ao-electron.git"
},
"keywords": [
"electron"
],
"author": "Henrique Sosa <henriquesosa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henriquesosa/intro-ao-electron/issues"
},
"homepage": "https://github.com/henriquesosa/intro-ao-electron#readme",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-jest": "^9.0.3",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"commitizen": "^2.4.6",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"electron-prebuilt": "^0.36.2",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^3.16.1",
"file-loader": "^0.8.5",
"ghooks": "^1.0.3",
"jest-cli": "^0.9.2",
"postcss-loader": "^0.8.0",
"postcss-modules": "^0.1.3",
"react-addons-test-utils": "^0.14.7",
"react-router-redux": "^2.1.0",
"rucksack-css": "^0.8.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-target-electron-renderer": "^0.4.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"babel-runtime": "^6.3.19",
"classnames": "^2.2.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.0.6",
"redux": "^3.0.6",
"redux-actions": "^0.9.1"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/babel-plugin-transform-runtime"
]
}
}