This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "laravel-nova",
"version": "1.12.3",
"description": "Supporting modules for Laravel Nova",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=production webpack --watch --config webpack.config.js",
"demo": "NODE_ENV=production webpack --config webpack.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/laravel/nova-js"
},
"keywords": [
"laravel"
],
"author": "Taylor Otwell",
"contributors": [
"Taylor Otwell <[email protected]> (http://laravel.com/)",
"David Hemphill <[email protected]> (http://davidhemphill.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/laravel/nova/issues"
},
"homepage": "https://nova.laravel.com",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.4.0",
"jest": "^23.0.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.1.0"
},
"jest": {
"testRegex": "test.js$",
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"dependencies": {
"babel-plugin-syntax-jsx": "^6.18.0",
"form-backend-validation": "^2.3.3",
"inflector-js": "^1.0.1"
}
}