-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "amsterdam",
"private": true,
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "NODE_ENV=production gulp build",
"start": "gulp watch"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"classnames": "^2.3.1",
"fs-extra": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.2",
"del": "^6.0.0",
"esbuild": "^0.14.2",
"esbuild-register": "^3.2.0",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"express": "^4.17.2",
"gulp": "^4.0.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.2"
}
}