-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "feconf2019",
"version": "0.0.1",
"main": "src/index.tsx",
"repository": "https://github.com/fedgkr/feconf2019.git",
"author": "codemilli <[email protected]>",
"license": "MIT",
"dependencies": {
"classcat": "^3.2.5",
"intersection-observer": "^0.5.1",
"next": "^9.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-spring": "^8.0.19",
"zustand": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@types/node": "^12.7.2",
"@types/react": "^16.8.22",
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.5.0",
"core-js": "^3.0.1",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"push-dir": "^0.4.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.4.2"
},
"scripts": {
"dev": "next src",
"build": "yarn build:all",
"build:main": "next build src && next export -o out src",
"build:sponsor": "cd sponsor && yarn deploy:sponsor && cd ../",
"build:cfs": "cd cfs && yarn deploy:cfs && cd ../",
"build:cname": "echo '2019.feconf.kr' > ./out/CNAME",
"build:all": "yarn build:main && yarn build:sponsor && yarn build:cfs && yarn build:cname",
"export": "yarn build:all && touch out/.nojekyll",
"push": "push-dir --dir=out --branch=gh-pages --cleanup --verbose",
"deploy:dev": "yarn build && now out --name feconf2019",
"deploy": "yarn export && yarn push"
}
}