-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "tic-tac-flow",
"version": "1.0.0",
"description": "Simple Tic Tac Toe game made in Webflow.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development node ./bin/build.js",
"build": "cross-env NODE_ENV=production node ./bin/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexiglesias93/tic-tac-flow.git"
},
"keywords": [
"webflow",
"no-code",
"tic tac toe"
],
"author": {
"name": "Alex Iglesias",
"url": "https://alexiglesias.me/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/finsweet/tic-tac-flow/issues"
},
"homepage": "https://tictacflow.webflow.io",
"devDependencies": {
"@finsweet/eslint-config": "^1.1.4",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.20",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"serve-handler": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@finsweet/ts-utils": "^0.31.2"
}
}