-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "snapit",
"version": "0.1.0",
"private": true,
"homepage": "https://rishabhjain.dev",
"dependencies": {
"codemirror": "^5.54.0",
"codemirror-graphql": "^0.12.0",
"codemirror-mode-elixir": "^1.1.2",
"codemirror-solidity": "^0.2.2",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.2",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-codemirror2": "^7.2.1",
"react-color": "^2.18.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-scripts": "3.4.1",
"react-syntax-highlighter": "^12.2.1",
"typescript": "~3.7.2"
},
"scripts": {
"deploy": "gh-pages -d build",
"predeploy": "yarn build",
"start": "react-scripts start",
"build": "react-scripts build",
"build:css": "tailwindcss build ./src/assets/tailwind.css -o ./src/assets/main.css",
"build:tailwind": "tsc ./src/tailwind.config.ts && mv ./src/tailwind.config.js ./",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"watch:css": "postcss -w src/assets/tailwind.css -o src/assets/main.css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/codemirror": "^0.0.96",
"@types/dom-to-image": "^2.6.1",
"@types/file-saver": "^2.0.1",
"@types/gh-pages": "^2.2.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^12.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-syntax-highlighter": "^11.0.4",
"autoprefixer": "^9.8.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript-prettier": "^2.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"gh-pages": "^3.0.0",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"tailwindcss": "^1.4.6"
}
}