https://github.com/atomikui/atomikui-starter-project
A simple react starter project powered by Parcel & Atomik UI
https://github.com/atomikui/atomikui-starter-project
Last synced: 9 months ago
JSON representation
A simple react starter project powered by Parcel & Atomik UI
- Host: GitHub
- URL: https://github.com/atomikui/atomikui-starter-project
- Owner: atomikui
- Created: 2020-11-24T19:45:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-24T15:51:16.000Z (over 4 years ago)
- Last Synced: 2025-08-13T19:11:12.964Z (11 months ago)
- Language: JavaScript
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atomikui Starter Project
### Setup
```
npm install
```
### Running the project
```
npm run start
```
### Running Unit Tests
Unit tests are designated with a `.test.js` extension.
```
npm run test:unit
```
### Running Accessibility Tests
Accessibility tests are designated with a `.spec.js` extension to separate them from unit tests.
```
npm run test:unit
```
### Linting
JavaScript
```
npm run lint:js
```
CSS
```
npm run lint:css
```