-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "icache-advanced",
"version": "1.0.0",
"scripts": {
"dev": "dojo build --mode dev --watch --serve",
"build": "dojo build --mode dist",
"build:deploy": "npm install && dojo build --mode dist --dojorc .dojorc-deploy && shx rm -rf node_modules",
"build:dev": "dojo build --mode dev",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"package": "shx cp -r output/dist/ ../../output/dist/icache-advanced/",
"test:ci": "echo no tests"
},
"main": "src/main.tsx",
"dependencies": {
"@dojo/framework": "~8.0.0",
"@material/button": "2.3.0",
"@material/card": "2.3.0",
"@material/typography": "2.3.0",
"cldrjs": "0.5.0",
"tslib": "~1.9.3"
},
"devDependencies": {
"@dojo/cli": "~8.0.0",
"@dojo/cli-build-app": "~8.0.1",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.2",
"typescript": "~3.4.5"
},
"keywords": [],
"description": "Example of getOrSet icache API"
}