-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "turtle-cv",
"author": "Lynn Smeria <ae@cephea.de>",
"version": "0.15.1",
"license": "Unlicense",
"description": "A YAML-based CV site generator with turtle powers!",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aengl/turtle-cv.git"
},
"bugs": {
"url": "https://github.com/aengl/turtle-cv/issues"
},
"homepage": "https://github.com/aengl/turtle-cv#readme",
"bin": {
"turtle-cv": "./src/cli.js"
},
"engines": {
"node": ">=10"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"dependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-modules-commonjs": "7.9.0",
"@babel/preset-react": "7.9.4",
"caporal": "1.3.0",
"js-yaml": "3.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-localization": "1.0.15",
"react-markdown": "4.3.1",
"require-from-string": "2.0.2",
"styled-jsx": "3.2.5"
},
"devDependencies": {
"ajv": "6.12.0",
"ava": "3.6.0",
"nodemon": "2.0.2",
"prettier": "2.0.4"
},
"scripts": {
"start": "node src/cli.js",
"create:gallery": "node gallery/create.js",
"create:schema": "node schema/create.js",
"dev": "nodemon",
"dev:gallery": "nodemon --config gallery/nodemon.json",
"dev:schema": "nodemon --config schema/nodemon.json",
"test": "ava"
}
}