-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 KB
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
{
"name": "@tsmodule/react",
"description": "Standard styles and dependencies for React TS Modules.",
"platform": "browser",
"version": "12.0.0",
"license": "MIT",
"types": "dist/index.d.ts",
"style": "dist/bundle.css",
"module": "dist/bundle.css",
"files": [
"dist"
],
"scripts": {
"export": "tsmodule build -b --styles src/styles/index.css",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"test": "ava",
"prepublishOnly": "yarn export && yarn build && yarn test"
},
"ava": {
"timeout": 240000,
"files": [
"test/**/*.test.ts"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--loader=@tsmodule/tsmodule"
]
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@tsmodule/tsmodule": "^35.0.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"autoprefixer": "^10.4.4",
"ava": "^4.1.0",
"cssnano": "^5.1.5",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.1",
"next": "^12.1.1",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"tailwindcss": "^3.0.23"
}
}