-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
55
56
57
58
59
60
{
"name": "webresto-module-starter",
"version": "1.0.0",
"description": "Starter for sails hook with webpack",
"main": "index.js",
"appId": "webresto-module-starter",
"types": "./src/index.d.ts",
"scripts": {
"dev": "npx tsc --watch & npx nodemon ./test/fixture/app.js",
"test": "mocha -r ts-node/register test/bootstrap.ts './test/{,!(fixture)/**}/*.test.ts' --exit",
"test:js": "mocha test/bootstrap.js './test/{,!(fixture)/**}/*.test.js' --exit",
"test:init": "npm i && cd ./test/fixture && npm i --no-package-lock --prefix ./ && cd -",
"build": "tsc ; npx gulp build"
},
"keywords": [],
"author": "webresto, xziy",
"license": "ISC",
"webresto": {
"moduleSpecificationVersion": "1.0"
},
"sails": {
"isHook": true,
"hookName": "webresto-module-starter"
},
"devDependencies": {
"@42pub/typed-sails": "^1.0.0",
"@babel/preset-env": "^7.22.4",
"@types/bluebird": "^3.5.32",
"@types/bluebird-global": "^3.5.12",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.7",
"@types/faker": "^4.1.12",
"@types/lodash": "^4.14.157",
"@types/mocha": "^8.0.2",
"@types/node": "^14.14.35",
"@types/uuid": "^8.0.0",
"@types/waterline": "^0.13.4",
"@webresto/core": "latest",
"@webresto/graphql": "latest",
"babel-loader": "^9.1.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"common-shakeify": "^1.1.2",
"dotenv": "^16.0.0",
"faker": "^4.1.0",
"gulp": "^4.0.2",
"gulp-uglify": "^3.0.2",
"mocha": "^8.1.1",
"sails-adminpanel": "^2.5.0",
"ts-loader": "^5.3.0",
"ts-node": "^10.7.0",
"tslint": "^5.11.0",
"typescript": "^5.0.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}