-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
32 lines (32 loc) · 1021 Bytes
/
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
{
"name": "store-arrays",
"version": "1.0.0",
"main": "src/main.tsx",
"scripts": {
"dev": "dojo build --mode dev --watch --serve",
"build": "dojo build --mode dist",
"build:dev": "dojo build --mode dev",
"build:deploy": "npm install && dojo build --mode dist --dojorc .dojorc-deploy && shx rm -rf node_modules",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"package": "shx cp -r output/dist/ ../../output/dist/store-arrays/",
"test:ci": "echo no tests"
},
"dependencies": {
"@dojo/framework": "~8.0.0",
"faker": "4.1.0",
"tslib": "~1.9.3"
},
"devDependencies": {
"@dojo/cli": "~8.0.0",
"@dojo/cli-build-app": "~8.0.1",
"@types/faker": "4.1.2",
"@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": "Demonstrates working with arrays in @dojo/stores"
}