-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.44 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
58
59
60
61
{
"name": "instant_lp",
"version": "1.0.0",
"description": "",
"dependencies": {
"axios": "^0.19.2",
"cpx": "^1.5.0",
"gatsby": "^2.21.1",
"gatsby-plugin-sass": "^2.3.0",
"gatsby-source-filesystem": "^2.3.0",
"gatsby-transformer-csv": "^2.3.0",
"gatsby-transformer-docx": "^1.0.8",
"gatsby-transformer-ms-word": "^1.1.0",
"gatsby-transformer-remark": "^2.8.3",
"googleapis": "^39.2.0",
"moment": "^2.24.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"//": "▼▼▼コンテンツ更新周り▼▼▼",
"contents:update": "run-s clean contents:delete:backup contents:backup contents:delete contents:get:*",
"contents:backup": "npx cpx \"./contents/**/*.*\" ./contents-backup -v -C",
"contents:restore": "npx cpx \"./contents-backup/**/*.*\" ./contents -v -C",
"contents:delete": "rimraf contents/**/*.{docx,csv}",
"contents:delete:backup": "rimraf contents-backup/{docx/*, csv/*}",
"contents:get": "npm-run-all contents:get:*",
"contents:get:docx": "node scripts/getContents/getDocx.js",
"contents:get:csv": "node scripts/getContents/getCsv.js",
"///": "▼▼▼デプロイ周り▼▼▼",
"deploy:prod": "run-s clean getContents build",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"release:serve": "gatsby develop",
"deploy": "run-s contents:update build",
"deploy:gh-pages": "run-s contents:update deploy:gh-pages:build deploy:gh-pages:copy",
"deploy:gh-pages:build": "gatsby build --prefix-paths",
"deploy:gh-pages:copy": "cpx \"./public/**/*.*\" ./docs -v -C"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ats05/instant_lp.git"
},
"author": "Atsushi Onozawa",
"license": "ISC",
"bugs": {
"url": "https://github.com/ats05/instant_lp/issues"
},
"homepage": "https://github.com/ats05/instant_lp#readme"
}