-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "@alexjpaz/alexjpazdotcom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "cd packages/home-gatsby && npm i",
"start": "webpack-dev-server --hot --inline",
"build": "npm run build:webpack && npm run build:gatsby && npm run build:functions && npm run build:redirects && npm run build:public",
"build:public": "cp -a public/* ./dist/ && cp -a _headers ./dist/",
"build:gatsby": "cd packages/home-gatsby && npm run build -- --prefix-paths && cp -a public/* ../../dist/",
"build:webpack": "webpack -p",
"build:functions": "echo 'skip'",
"build:redirects": "mkdir -p ./dist && cp -a _redirects ./dist",
"test": "npm run test:mocha",
"test:mocha": "mocha 'src/**/*.spec.js'",
"test:integration": "mocha -t 10000 'test-integration/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexjpaz/alexjpaz.com.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexjpaz/alexjpaz.com/issues"
},
"homepage": "https://github.com/alexjpaz/alexjpaz.com#readme",
"dependencies": {
"express": "^4.16.3",
"express-http-proxy": "^1.4.0",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-remark": "^2.7.1",
"js-yaml": "^3.13.1",
"serverless-http": "^1.6.0",
"serverless-offline": "^3.25.17",
"sinon": "^7.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdom": "^13.2.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"webpack": "4.2.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}