-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "react-sketchapp-resume",
"version": "2.0.0",
"private": true,
"license": "MIT",
"repository": "francoischalifour/react-sketchapp-resume",
"main": "react-sketchapp-resume.sketchplugin",
"manifest": "src/manifest.json",
"author": {
"name": "François Chalifour",
"email": "[email protected]",
"url": "https://francoischalifour.com"
},
"scripts": {
"start": "yarn serve & yarn render",
"start:fr": "yarn serve & yarn render:fr",
"serve": "serve images --listen 5000",
"build": "yarn serve & yarn github:fetch && skpm-build --run",
"watch": "skpm-build --watch",
"render": "skpm-build --watch --run",
"render:mock": "./scripts/config.sh env mock && skpm-build --watch --run",
"render:production": "./scripts/config.sh env production && skpm-build --watch --run",
"render:en": "./scripts/config.sh lang en && skpm-build --watch --run",
"render:fr": "./scripts/config.sh lang fr && skpm-build --watch --run",
"render:once": "skpm-build --run",
"link-plugin": "skpm link",
"lint": "eslint .",
"format": "prettier --write '**/*.js'",
"github:fetch": "node ./scripts/fetch-github > ./data/mocks/github.json",
"pdf:metadata": "node ./scripts/add-pdf-metadata"
},
"standard": {
"ignore": [
"*.sketchplugin"
]
},
"dependencies": {
"react": "16.8.6",
"react-sketchapp": "2.1.0",
"react-test-renderer": "16.8.6",
"sketch-module-fetch-polyfill": "0.1.4"
},
"devDependencies": {
"@skpm/builder": "0.4.3",
"babel-eslint": "10.0.2",
"dist-exiftool": "10.53.0",
"dotenv": "8.0.0",
"eslint": "6.0.1",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-react": "7.14.2",
"node-exiftool": "2.3.0",
"node-fetch": "2.6.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"serve": "11.0.2"
}
}