-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "react-curriculum-vitae",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "browser-sync start --config bs-config.js",
"build": "run-s build:*",
"build:pdf": "npm run pdf",
"build:js": "webpack --mode development",
"pdf": " NODE_ENV=production babel-node ./src/index.js",
"watch:pdf": "watch 'npm run build:pdf' ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wheatandcat/react-curriculum-vitae.git"
},
"author": "wheatandcat",
"license": "MIT",
"bugs": {
"url": "https://github.com/wheatandcat/react-curriculum-vitae/issues"
},
"homepage": "https://github.com/wheatandcat/react-curriculum-vitae#readme",
"dependencies": {
"@react-pdf/core": "^0.7.6",
"@react-pdf/dom": "^0.7.6",
"@react-pdf/node": "^0.7.6",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-pdf-js": "^3.0.7",
"regenerator-runtime": "^0.11.1",
"watch": "^1.0.2",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.24.4",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"npm-run-all": "^4.1.3",
"transform-loader": "^0.2.4"
}
}