-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "stayknit",
"version": "1.0.0",
"description": "Hot reload this",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/nthm/stayknit"
},
"author": "Gen Hames",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"build:ts": "babel src --out-dir serve --extensions \".ts,.tsx\" --source-maps",
"build:static": "mkdir -p serve && cp -r ./static/* serve/",
"snowpack": "mkdir -p serve && snowpack && cp -r ./web_modules serve/",
"ssr": "cd ssr && npm run build",
"install": "npm run snowpack",
"build": "run-p build:*",
"serve": "servor ./serve",
"start": "run-p \"build:ts -- --watch\" serve",
"publish": "git fetch . work:publish"
},
"snowpack": {
"scripts": {
"mount:src": "mount src"
}
},
"dependencies": {
"haptic": "^0.4.0",
"sinuous-lifecycle": "^2.1.0",
"sinuous-trace": "^2.3.0",
"styletakeout.macro": "2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.11.0",
"@snowpack/babel-plugin-package-import": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-plugin-macros": "^2.8.0",
"eslint": "^7.8.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.6",
"npm-run-all": "^4.1.5",
"servor": "^4.0.2",
"snowpack": "^2.10.1",
"typescript": "^4.0.2"
}
}