This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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
{
"name": "facebook-instant-articles-builder",
"productName": "Facebook Instant Articles Builder",
"version": "0.2.4",
"description": "App to create a template to build Instant Articles from articles on your website.",
"license": "SEE LICENSE IN ./LICENSE",
"main": "src/js/background.js",
"dependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-flow": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.0",
"@octokit/rest": "^18.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"classnames": "^2.2.6",
"compare-versions": "^3.6.0",
"dotenv": "^8.2.0",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-settings": "^4.0.2",
"flux": "^4.0.1",
"gulp-connect-php": "^1.0.3",
"immutable": "^4.0.0-rc.12",
"moment": "^2.29.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-joyride": "^1.11.4",
"react-sortable-hoc": "^1.11.0",
"semantic-ui-react": "^0.80.0",
"yargs-parser": "^20.2.6"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^11.5.0",
"electron-packager": "15.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-15": "^1.4.1",
"eslint": "^4.19.1",
"eslint-config-fbjs": "^3.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-relay": "1.8.2",
"flow-bin": "^0.124.0",
"husky": "^5.1.1",
"immutable-devtools": "0.1.5",
"jest-cli": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier-eslint-cli": "^5.0.0",
"react-test-renderer": "^15.6.2"
},
"scripts": {
"start": "electron .",
"precommit": "lint-staged",
"test": "jest",
"build": "electron-packager . \"Instant Articles Builder\" --overwrite --icon=src/img/icon --out build --all",
"flow": "flow",
"lint": "eslint \"src/**/*.js\" --quiet"
},
"lint-staged": {
"src/**/*.{js,json,css}": [
"prettier-eslint --eslint-config-path=.eslintrc --write \"src/**/*.{js,json,css}\"",
"git add"
]
},
"repository": {
"type": "git",
"url": "git://github.com/facebook/instant-articles-builder"
},
"keywords": [
"electron",
"facebook",
"instant articles",
"react"
],
"jest": {
"watchman": false
}
}