-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "stringparser-web",
"main": "index.js",
"version": "1.0.0",
"author": "Javier Carrillo Milla <[email protected]>",
"license": "MIT",
"private": false,
"repository": "[email protected]:stringparser/stringparser.co.git",
"scripts": {
"dev": "rm -rf .next && next",
"start": "next start",
"clean": "rm -rf docs/**/* && touch docs/.nojekyll",
"build": "yarn clean && next build",
"assets": "cp node_modules/@stringparser/cv/dist/cv.pdf public/",
"export": "yarn build && NODE_ENV=production next export -o docs && git add docs && git commit -m 'new site version'",
"predeploy": "yarn assets",
"deploy": "yarn export && git push origin `git subtree split --prefix=docs`:master --force"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@stringparser/cv": "https://github.com/stringparser/cv.git",
"@types/babel__core": "^7.1.18",
"@types/next": "^6.0.3",
"@types/react": "^16.4.4",
"@types/react-dom": "^16.0.6",
"@types/styled-components": "^5.1.23",
"babel-plugin-styled-components": "^1.5.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.3",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-react": "^3.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@types/segment-analytics": "^0.0.28",
"@types/webmidi": "^2.0.2",
"styled-jsx": "^5.0.0",
"tone": "^0.12.80"
}
}