-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "digital-resume",
"type": "module",
"version": "2.0.0",
"scripts": {
"test": "npx --node-options='--experimental-vm-modules --no-warnings' jest",
"build": "node build --trace-warnings",
"watch": "nodemon build -- --no-render"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralphcasipe1/digital-resume.git"
},
"author": "Ralph Kevin Y. Casipe",
"license": "MIT",
"dependencies": {
"globby": "^11.0.3",
"handlebars": "^4.7.7",
"puppeteer": "^15.4.0",
"sass": "^1.34.1"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"babel-eslint": "^11.0.0-beta.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7"
},
"babel": {},
"nodemonConfig": {
"ext": "js,hbs,scss",
"watch": [
"src",
"build"
]
}
}