-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
57 lines (57 loc) · 1.75 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": "apprenticeships.me",
"version": "1.0.0",
"description": "Find a new career learning from the industry itself.",
"main": "index.js",
"scripts": {
"algolia": "atomic-algolia",
"prebuild": "rm -rf dist",
"copy:dist": "cp -R public/ dist/",
"build:css": "postcss static/dev.css -o static/style.css; postcss static/dev.css -o public/style.css",
"serve": "npm run build:css & hugo serve",
"oldstart": "concurrently \"hugo -w\" \"npm run serve\"",
"start": "npm run build:css; hugo --gc server",
"build": "hugo; npm run prebuild; npm run build:css; node misc-scripts/github.js; npm run algolia; npm run copy:dist;",
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"contributors": [
{
"name": "Frances Coronel",
"email": "[email protected]",
"url": "https://www.fvcproductions.com"
},
{
"name": "Benjamin Modayil",
"email": "[email protected]",
"url": "https://www.modayil.me/"
}
],
"license": "MIT",
"dependencies": {
"instantsearch.js": "^4.46.1",
"node-fetch": "^3.3.0",
"snyk": "^1.1061.0"
},
"devDependencies": {
"atomic-algolia": "0.3.19",
"axios": "1.4.0",
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"concurrently": "8.1.0",
"eslint": "8.26.0",
"cssnano": "5.1.13",
"eslint-config-google": "0.14.0",
"postcss-cli": "10.1.0",
"postcss-cssnext": "3.1.1",
"postcss-import": "15.1.0",
"postcss-nested": "6.0.1",
"postcss-partial-process": "2.0.0",
"postcss-prepend-selector": "0.3.1",
"postcss-responsive-type": "1.0.0",
"prettier": "2.8.8",
"tailwindcss": "3.1.8"
},
"snyk": true
}