Graphite/package.json
Keavon Chambers 53ad105f57 Restructure project directories (#333)
`/client/web` -> `/frontend`
`/client/cli` -> *delete for now*
`/client/native` -> *delete for now*
`/core/editor` -> `/editor`
`/core/document` -> `/graphene`
`/core/renderer` -> `/charcoal`
`/core/proc-macro` -> `/proc-macros` *(now plural)*
2021-08-07 05:17:18 -07:00

12 lines
No EOL
373 B
JSON

{
"name": "graphite-frontend-root-shortcut",
"version": "1.0.0",
"description": "A convenience package for calling the real package.json in /frontend.",
"private": true,
"scripts": {
"serve": "cd frontend && npm run serve",
"build": "cd frontend && npm run build",
"lint": "cd frontend && npm run lint",
"lint-no-fix": "cd frontend && npm run lint-no-fix"
}
}