This repository was archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.88 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": "remote-styles",
"version": "1.0.0",
"description": "Load CSS from Firebase Remote Config",
"main": "src/index.ts",
"scripts": {
"build": "npm run clean && npm run rollup && node after.build.js",
"build:dev": "npm run clean && npm run rollup",
"cli:dev": "ts-node --project tsconfig.cli.json ./src/cli/index.ts get --project=\"remote-styles\" --sa=\"./sa.json\" --out=\"styles.css\" --key=\"CSS\"",
"cli:put": "ts-node --project tsconfig.cli.json ./src/cli/index.ts put --project=\"remote-styles\" --sa=\"./sa.json\" --key=\"CSS2\" styles.css",
"cli:help": "ts-node --project tsconfig.cli.json ./src/cli/index.ts",
"clean": "rm -rf ./dist",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:verify": "cypress verify",
"rollup": "rollup --config",
"serve": "serve --no-clipboard dist/site -p 5033",
"serve:sample:simple": "serve ./samples/simple/public",
"start:ci": "npm run build && start-server-and-test serve http://localhost:5033 cy:run",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "Apache 2.0",
"dependencies": {
"firebase": "^7.2.0",
"googleapis": "^44.0.0",
"node-fetch": "^2.6.0",
"stylis": "^3.5.4",
"yargs": "^14.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.19",
"babel-jest": "^24.9.0",
"cypress": "^3.4.1",
"jest": "^24.9.0",
"rollup": "^1.24.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-generate-package-json": "^3.1.3",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"serve": "^11.2.0",
"shelljs": "^0.8.3",
"start-server-and-test": "^1.10.6",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}